File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
lib/node_modules/@stdlib/ndarray/base/dtype2c Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"binary" : null ,
3
3
"bool" : " bool" ,
4
+ "complex32" : " stdlib_complex32_t" ,
4
5
"complex64" : " stdlib_complex64_t" ,
5
6
"complex128" : " stdlib_complex128_t" ,
6
- "float16" : null ,
7
+ "float16" : " stdlib_float16_t " ,
7
8
"bfloat16" : null ,
8
9
"float32" : " float" ,
9
10
"float64" : " double" ,
Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ tape( 'the function returns the C data type associated with a provided data type
41
41
values = [
42
42
'float64' ,
43
43
'float32' ,
44
+ 'float16' ,
44
45
'int8' ,
45
46
'uint8' ,
46
47
'uint8c' ,
@@ -52,6 +53,7 @@ tape( 'the function returns the C data type associated with a provided data type
52
53
'uint64' ,
53
54
'binary' ,
54
55
'generic' ,
56
+ 'complex32' ,
55
57
'complex64' ,
56
58
'complex128' ,
57
59
'bool'
@@ -60,6 +62,7 @@ tape( 'the function returns the C data type associated with a provided data type
60
62
expected = [
61
63
'double' ,
62
64
'float' ,
65
+ 'stdlib_float16_t' ,
63
66
'int8_t' ,
64
67
'uint8_t' ,
65
68
null ,
@@ -71,6 +74,7 @@ tape( 'the function returns the C data type associated with a provided data type
71
74
'uint64_t' ,
72
75
null ,
73
76
null ,
77
+ 'stdlib_complex32_t' ,
74
78
'stdlib_complex64_t' ,
75
79
'stdlib_complex128_t' ,
76
80
'bool'
You can’t perform that action at this time.
0 commit comments