File tree Expand file tree Collapse file tree 3 files changed +177
-39
lines changed Expand file tree Collapse file tree 3 files changed +177
-39
lines changed Original file line number Diff line number Diff line change 16
16
17
17
# These imports may overwrite names from the import * above.
18
18
from ._aliases import (
19
+ UniqueAllResult ,
20
+ UniqueCountsResult ,
21
+ UniqueInverseResult ,
19
22
acos ,
20
23
acosh ,
24
+ arange ,
25
+ argsort ,
21
26
asarray ,
22
27
asarray_cupy ,
23
28
asin ,
24
29
asinh ,
30
+ astype ,
25
31
atan ,
26
32
atan2 ,
27
33
atanh ,
28
34
bitwise_invert ,
29
35
bitwise_left_shift ,
30
36
bitwise_right_shift ,
31
37
bool ,
38
+ ceil ,
32
39
concat ,
40
+ empty ,
41
+ empty_like ,
42
+ eye ,
43
+ floor ,
44
+ full ,
45
+ full_like ,
46
+ isdtype ,
47
+ linspace ,
48
+ matmul ,
49
+ matrix_transpose ,
50
+ nonzero ,
51
+ ones ,
52
+ ones_like ,
53
+ permute_dims ,
33
54
pow ,
55
+ prod ,
56
+ reshape ,
57
+ sort ,
58
+ std ,
59
+ sum ,
60
+ tensordot ,
61
+ trunc ,
62
+ unique_all ,
63
+ unique_counts ,
64
+ unique_inverse ,
65
+ unique_values ,
66
+ var ,
67
+ zeros ,
68
+ zeros_like ,
34
69
)
35
70
from .linalg import matrix_transpose , vecdot
36
71
55
90
]
56
91
57
92
__all__ += [
93
+ "UniqueAllResult" ,
94
+ "UniqueCountsResult" ,
95
+ "UniqueInverseResult" ,
58
96
"acos" ,
59
97
"acosh" ,
98
+ "arange" ,
99
+ "argsort" ,
60
100
"asarray" ,
61
101
"asarray_cupy" ,
62
102
"asin" ,
63
103
"asinh" ,
104
+ "astype" ,
64
105
"atan" ,
65
106
"atan2" ,
66
107
"atanh" ,
67
108
"bitwise_invert" ,
68
109
"bitwise_left_shift" ,
69
110
"bitwise_right_shift" ,
70
111
"bool" ,
112
+ "ceil" ,
71
113
"concat" ,
114
+ "empty" ,
115
+ "empty_like" ,
116
+ "eye" ,
117
+ "floor" ,
118
+ "full" ,
119
+ "full_like" ,
120
+ "isdtype" ,
121
+ "linspace" ,
122
+ "matmul" ,
123
+ "matrix_transpose" ,
124
+ "nonzero" ,
125
+ "ones" ,
126
+ "ones_like" ,
127
+ "permute_dims" ,
72
128
"pow" ,
129
+ "prod" ,
130
+ "reshape" ,
131
+ "sort" ,
132
+ "std" ,
133
+ "sum" ,
134
+ "tensordot" ,
135
+ "trunc" ,
136
+ "unique_all" ,
137
+ "unique_counts" ,
138
+ "unique_inverse" ,
139
+ "unique_values" ,
140
+ "var" ,
141
+ "zeros" ,
142
+ "zeros_like" ,
73
143
]
74
144
75
145
__all__ += [
Original file line number Diff line number Diff line change 15
15
16
16
# These imports may overwrite names from the import * above.
17
17
from ._aliases import (
18
+ UniqueAllResult ,
19
+ UniqueCountsResult ,
20
+ UniqueInverseResult ,
18
21
acos ,
19
22
acosh ,
23
+ arange ,
24
+ argsort ,
20
25
asarray ,
21
26
asarray_numpy ,
22
27
asin ,
23
28
asinh ,
29
+ astype ,
24
30
atan ,
25
31
atan2 ,
26
32
atanh ,
27
33
bitwise_invert ,
28
34
bitwise_left_shift ,
29
35
bitwise_right_shift ,
30
36
bool ,
37
+ ceil ,
31
38
concat ,
32
- pow ,
39
+ empty ,
40
+ empty_like ,
41
+ eye ,
42
+ floor ,
43
+ full ,
44
+ full_like ,
33
45
isdtype ,
46
+ linspace ,
47
+ matmul ,
48
+ matrix_transpose ,
49
+ nonzero ,
50
+ ones ,
51
+ ones_like ,
52
+ permute_dims ,
53
+ pow ,
54
+ prod ,
55
+ reshape ,
56
+ sort ,
57
+ std ,
58
+ sum ,
59
+ tensordot ,
60
+ trunc ,
61
+ unique_all ,
62
+ unique_counts ,
63
+ unique_inverse ,
64
+ unique_values ,
65
+ var ,
66
+ zeros ,
67
+ zeros_like ,
34
68
)
35
69
from .linalg import matrix_transpose , vecdot
36
70
55
89
]
56
90
57
91
__all__ += [
92
+ "UniqueAllResult" ,
93
+ "UniqueCountsResult" ,
94
+ "UniqueInverseResult" ,
58
95
"acos" ,
59
96
"acosh" ,
97
+ "arange" ,
98
+ "argsort" ,
60
99
"asarray" ,
61
100
"asarray_numpy" ,
62
101
"asin" ,
63
102
"asinh" ,
103
+ "astype" ,
64
104
"atan" ,
65
105
"atan2" ,
66
106
"atanh" ,
67
107
"bitwise_invert" ,
68
108
"bitwise_left_shift" ,
69
109
"bitwise_right_shift" ,
70
110
"bool" ,
111
+ "ceil" ,
71
112
"concat" ,
72
- "pow" ,
113
+ "empty" ,
114
+ "empty_like" ,
115
+ "eye" ,
116
+ "floor" ,
117
+ "full" ,
118
+ "full_like" ,
73
119
"isdtype" ,
120
+ "linspace" ,
121
+ "matmul" ,
122
+ "matrix_transpose" ,
123
+ "nonzero" ,
124
+ "ones" ,
125
+ "ones_like" ,
126
+ "permute_dims" ,
127
+ "pow" ,
128
+ "prod" ,
129
+ "reshape" ,
130
+ "sort" ,
131
+ "std" ,
132
+ "sum" ,
133
+ "tensordot" ,
134
+ "trunc" ,
135
+ "unique_all" ,
136
+ "unique_counts" ,
137
+ "unique_inverse" ,
138
+ "unique_values" ,
139
+ "var" ,
140
+ "zeros" ,
141
+ "zeros_like" ,
74
142
]
75
143
76
144
__all__ += [
Original file line number Diff line number Diff line change @@ -115,71 +115,71 @@ def exlcude(name):
115
115
]
116
116
117
117
__all__ += [
118
- "result_type" ,
119
- "can_cast" ,
120
- "permute_dims" ,
121
- "bitwise_invert" ,
122
- "newaxis" ,
123
118
"add" ,
119
+ "all" ,
120
+ "any" ,
121
+ "arange" ,
122
+ "astype" ,
124
123
"atan2" ,
125
124
"bitwise_and" ,
125
+ "bitwise_invert" ,
126
126
"bitwise_left_shift" ,
127
127
"bitwise_or" ,
128
128
"bitwise_right_shift" ,
129
129
"bitwise_xor" ,
130
+ "broadcast_arrays" ,
131
+ "broadcast_to" ,
132
+ "can_cast" ,
133
+ "concat" ,
130
134
"divide" ,
135
+ "empty" ,
131
136
"equal" ,
137
+ "expand_dims" ,
138
+ "eye" ,
139
+ "flip" ,
132
140
"floor_divide" ,
141
+ "full" ,
133
142
"greater" ,
134
143
"greater_equal" ,
144
+ "isdtype" ,
135
145
"less" ,
136
146
"less_equal" ,
147
+ "linspace" ,
137
148
"logaddexp" ,
149
+ "matmul" ,
150
+ "matrix_transpose" ,
151
+ "max" ,
152
+ "mean" ,
153
+ "min" ,
138
154
"multiply" ,
155
+ "newaxis" ,
156
+ "nonzero" ,
139
157
"not_equal" ,
158
+ "ones" ,
159
+ "permute_dims" ,
140
160
"pow" ,
161
+ "prod" ,
141
162
"remainder" ,
142
- "subtract " ,
143
- "max " ,
144
- "min " ,
163
+ "reshape " ,
164
+ "result_type " ,
165
+ "roll " ,
145
166
"sort" ,
146
- "prod" ,
147
- "sum" ,
148
- "any" ,
149
- "all" ,
150
- "mean" ,
151
- "std" ,
152
- "var" ,
153
- "concat" ,
154
167
"squeeze" ,
155
- "broadcast_to" ,
156
- "flip" ,
157
- "roll" ,
158
- "nonzero" ,
159
- "where" ,
160
- "reshape" ,
161
- "arange" ,
162
- "eye" ,
163
- "linspace" ,
164
- "full" ,
165
- "ones" ,
166
- "zeros" ,
167
- "empty" ,
168
+ "std" ,
169
+ "subtract" ,
170
+ "sum" ,
171
+ "take" ,
172
+ "tensordot" ,
168
173
"tril" ,
169
174
"triu" ,
170
- "expand_dims" ,
171
- "astype" ,
172
- "broadcast_arrays" ,
173
175
"unique_all" ,
174
176
"unique_counts" ,
175
177
"unique_inverse" ,
176
178
"unique_values" ,
177
- "matmul" ,
178
- "matrix_transpose" ,
179
+ "var" ,
179
180
"vecdot" ,
180
- "tensordot" ,
181
- "isdtype" ,
182
- "take" ,
181
+ "where" ,
182
+ "zeros" ,
183
183
]
184
184
185
185
You can’t perform that action at this time.
0 commit comments