| 106 | using ::testing::HasSubstr; |
| 107 | |
| 108 | XLA_TEST_F(BroadcastSimpleTest, ScalarNoOpBroadcast) { |
| 109 | XlaBuilder b(TestName()); |
| 110 | Broadcast(ConstantR0<float>(&b, 1.5), {}); |
| 111 | ComputeAndCompareR0<float>(&b, 1.5, {}, ErrorSpec(0.0001)); |
| 112 | } |
| 113 | |
| 114 | XLA_TEST_F(BroadcastSimpleTest, ScalarTo2D_2x3) { |
| 115 | XlaBuilder b(TestName()); |
no test coverage detected