| 78 | } |
| 79 | |
| 80 | XLA_TEST_F(SliceTest, Slice0x0to0x0F32) { |
| 81 | XlaBuilder builder(TestName()); |
| 82 | auto original = ConstantR2FromArray2D<float>(&builder, Array2D<float>(0, 0)); |
| 83 | Slice(original, {0, 0}, {0, 0}, {1, 1}); |
| 84 | |
| 85 | ComputeAndCompareR2<float>(&builder, Array2D<float>(0, 0), {}); |
| 86 | } |
| 87 | |
| 88 | XLA_TEST_F(SliceTest, Slice0x20to0x5F32) { |
| 89 | XlaBuilder builder(TestName()); |
nothing calls this directly
no test coverage detected