Skip to content

Commit a89d1b6

Browse files
peri044gs-olive
authored andcommitted
chore: Apply split tests commit
Signed-off-by: Dheeraj Peri <[email protected]>
1 parent f27f5ec commit a89d1b6

File tree

12 files changed

+1506
-1407
lines changed

12 files changed

+1506
-1407
lines changed

tests/core/conversion/converters/BUILD

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,10 @@ converter_test(
9595
name = "test_matrix_multiply",
9696
)
9797

98+
converter_test(
99+
name = "test_masked_fill",
100+
)
101+
98102
converter_test(
99103
name = "test_max",
100104
)
@@ -115,6 +119,10 @@ converter_test(
115119
name = "test_reduce",
116120
)
117121

122+
converter_test(
123+
name = "test_roll",
124+
)
125+
118126
converter_test(
119127
name = "test_reflection_pad",
120128
)
@@ -123,6 +131,10 @@ converter_test(
123131
name = "test_replication_pad",
124132
)
125133

134+
converter_test(
135+
name = "test_scatter",
136+
)
137+
126138
converter_test(
127139
name = "test_shuffle",
128140
)
@@ -139,6 +151,10 @@ converter_test(
139151
name = "test_interpolate",
140152
)
141153

154+
converter_test(
155+
name = "test_index",
156+
)
157+
142158
converter_test(
143159
name = "test_select",
144160
)
@@ -147,6 +163,14 @@ converter_test(
147163
name = "test_stack",
148164
)
149165

166+
converter_test(
167+
name = "test_slice",
168+
)
169+
170+
converter_test(
171+
name = "test_split",
172+
)
173+
150174
converter_test(
151175
name = "test_topk",
152176
)
@@ -159,10 +183,22 @@ converter_test(
159183
name = "test_unsqueeze",
160184
)
161185

186+
converter_test(
187+
name = "test_unbind",
188+
)
189+
190+
converter_test(
191+
name = "test_unpack",
192+
)
193+
162194
converter_test(
163195
name = "test_squeeze",
164196
)
165197

198+
converter_test(
199+
name = "test_where",
200+
)
201+
166202
test_suite(
167203
name = "converter_tests",
168204
tests = [
@@ -185,22 +221,31 @@ test_suite(
185221
":test_expand",
186222
":test_instance_norm",
187223
":test_interpolate",
224+
":test_index",
188225
":test_layer_norm",
189226
":test_linear",
190227
":test_lstm_cell",
191228
":test_matrix_multiply",
229+
":test_masked_fill",
192230
":test_max",
193231
":test_normalize",
194232
":test_pooling",
195233
":test_reduce",
234+
":test_roll",
196235
":test_replication_pad",
236+
":test_scatter",
197237
":test_select",
198238
":test_shuffle",
199239
":test_softmax",
200240
":test_squeeze",
201241
":test_stack",
242+
":test_split",
243+
":test_slice",
202244
":test_topk",
203245
":test_unary",
204246
":test_unsqueeze",
247+
":test_unbind",
248+
":test_unpack",
249+
":test_where",
205250
],
206251
)

0 commit comments

Comments
 (0)