forked from arrayfire/arrayfire
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtype_util.cpp
More file actions
25 lines (23 loc) · 727 Bytes
/
type_util.cpp
File metadata and controls
25 lines (23 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*******************************************************
* Copyright (c) 2014, ArrayFire
* All rights reserved.
*
* This file is distributed under 3-clause BSD license.
* The complete license agreement can be obtained at:
* http://arrayfire.com/licenses/BSD-3-Clause
********************************************************/
#include <type_util.hpp>
const char *getName(af_dtype type)
{
switch(type) {
case f32: return "float";
case f64: return "double";
case c32: return "complex float";
case c64: return "complex double";
case u32: return "unsigned int";
case s32: return "int";
case u8: return "unsigned char";
case b8: return "bool";
default: return "unknown type";
}
}