@@ -17,27 +17,27 @@ def test_function_types():
17
17
18
18
elementwise_function_input_types = {
19
19
'abs' : 'numeric' ,
20
- 'acos' : 'floating' ,
21
- 'acosh' : 'floating' ,
20
+ 'acos' : 'floating-point ' ,
21
+ 'acosh' : 'floating-point ' ,
22
22
'add' : 'numeric' ,
23
- 'asin' : 'floating' ,
24
- 'asinh' : 'floating' ,
25
- 'atan' : 'floating' ,
26
- 'atan2' : 'floating' ,
27
- 'atanh' : 'floating' ,
28
- 'bitwise_and' : 'integer_or_boolean ' ,
29
- 'bitwise_invert' : 'integer_or_boolean ' ,
23
+ 'asin' : 'floating-point ' ,
24
+ 'asinh' : 'floating-point ' ,
25
+ 'atan' : 'floating-point ' ,
26
+ 'atan2' : 'floating-point ' ,
27
+ 'atanh' : 'floating-point ' ,
28
+ 'bitwise_and' : 'integer or boolean ' ,
29
+ 'bitwise_invert' : 'integer or boolean ' ,
30
30
'bitwise_left_shift' : 'integer' ,
31
- 'bitwise_or' : 'integer_or_boolean ' ,
31
+ 'bitwise_or' : 'integer or boolean ' ,
32
32
'bitwise_right_shift' : 'integer' ,
33
- 'bitwise_xor' : 'integer_or_boolean ' ,
33
+ 'bitwise_xor' : 'integer or boolean ' ,
34
34
'ceil' : 'numeric' ,
35
- 'cos' : 'floating' ,
36
- 'cosh' : 'floating' ,
37
- 'divide' : 'floating' ,
35
+ 'cos' : 'floating-point ' ,
36
+ 'cosh' : 'floating-point ' ,
37
+ 'divide' : 'floating-point ' ,
38
38
'equal' : 'all' ,
39
- 'exp' : 'floating' ,
40
- 'expm1' : 'floating' ,
39
+ 'exp' : 'floating-point ' ,
40
+ 'expm1' : 'floating-point ' ,
41
41
'floor' : 'numeric' ,
42
42
'floor_divide' : 'numeric' ,
43
43
'greater' : 'numeric' ,
@@ -47,11 +47,11 @@ def test_function_types():
47
47
'isnan' : 'numeric' ,
48
48
'less' : 'numeric' ,
49
49
'less_equal' : 'numeric' ,
50
- 'log' : 'floating' ,
51
- 'logaddexp' : 'floating' ,
52
- 'log10' : 'floating' ,
53
- 'log1p' : 'floating' ,
54
- 'log2' : 'floating' ,
50
+ 'log' : 'floating-point ' ,
51
+ 'logaddexp' : 'floating-point ' ,
52
+ 'log10' : 'floating-point ' ,
53
+ 'log1p' : 'floating-point ' ,
54
+ 'log2' : 'floating-point ' ,
55
55
'logical_and' : 'boolean' ,
56
56
'logical_not' : 'boolean' ,
57
57
'logical_or' : 'boolean' ,
@@ -60,17 +60,17 @@ def test_function_types():
60
60
'negative' : 'numeric' ,
61
61
'not_equal' : 'all' ,
62
62
'positive' : 'numeric' ,
63
- 'pow' : 'floating' ,
63
+ 'pow' : 'floating-point ' ,
64
64
'remainder' : 'numeric' ,
65
65
'round' : 'numeric' ,
66
66
'sign' : 'numeric' ,
67
- 'sin' : 'floating' ,
68
- 'sinh' : 'floating' ,
69
- 'sqrt' : 'floating' ,
67
+ 'sin' : 'floating-point ' ,
68
+ 'sinh' : 'floating-point ' ,
69
+ 'sqrt' : 'floating-point ' ,
70
70
'square' : 'numeric' ,
71
71
'subtract' : 'numeric' ,
72
- 'tan' : 'floating' ,
73
- 'tanh' : 'floating' ,
72
+ 'tan' : 'floating-point ' ,
73
+ 'tanh' : 'floating-point ' ,
74
74
'trunc' : 'numeric' ,
75
75
}
76
76
0 commit comments