| 42 | }; |
| 43 | |
| 44 | TEST_F(ConstantsTest, ZeroCellF32) { |
| 45 | XlaBuilder builder(TestName()); |
| 46 | ConstantR1<float>(&builder, {}); |
| 47 | |
| 48 | ComputeAndCompareR1<float>(&builder, {}, {}, error_spec_); |
| 49 | } |
| 50 | |
| 51 | TEST_F(ConstantsTest, OneCellF32) { |
| 52 | std::vector<float> constant = {2.0}; |
nothing calls this directly
no test coverage detected