We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc9009f commit fa5a3f9Copy full SHA for fa5a3f9
tensorflow/compiler/xla/tests/slice_test.cc
@@ -193,12 +193,27 @@ class SliceR1Test : public ClientLibraryTestBase,
193
}
194
};
195
196
-XLA_TEST_P(SliceR1Test, DoIt) {
+XLA_TEST_P(SliceR1Test, DoIt_F32) {
197
Run<float>(GetParam());
198
+}
199
+
200
+XLA_TEST_P(SliceR1Test, DoIt_F64) {
201
Run<double>(GetParam());
202
203
204
+XLA_TEST_P(SliceR1Test, DoIt_U32) {
205
Run<uint32>(GetParam());
206
207
208
+XLA_TEST_P(SliceR1Test, DoIt_S32) {
209
Run<int32>(GetParam());
210
211
212
+XLA_TEST_P(SliceR1Test, DoIt_U64) {
213
Run<uint64>(GetParam());
214
215
216
+XLA_TEST_P(SliceR1Test, DoIt_S64) {
217
Run<int64>(GetParam());
218
219
0 commit comments