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
29 lines (27 loc) · 876 Bytes
/
type_util.cpp
File metadata and controls
29 lines (27 loc) · 876 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
26
27
28
29
/*******************************************************
* 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 u16: return "unsigned short";
case s16: return "short";
case u64: return "unsigned long long";
case s64: return "long long";
case u8 : return "unsigned char";
case b8 : return "bool";
default : return "unknown type";
}
}