| 42 | }; |
| 43 | |
| 44 | TEST_F(BitcastConvertTest, ConvertR1S32ToR1S32) { |
| 45 | XlaBuilder builder(TestName()); |
| 46 | auto a = ConstantR1<int32>(&builder, {42, 64}); |
| 47 | BitcastConvertType(a, S32); |
| 48 | |
| 49 | std::vector<int32> expected = {42, 64}; |
| 50 | ComputeAndCompareR1<int32>(&builder, expected, {}); |
| 51 | } |
| 52 | |
| 53 | TEST_F(BitcastConvertTest, ConvertR1F32ToR1F32) { |
| 54 | XlaBuilder builder(TestName()); |
nothing calls this directly
no test coverage detected