| 37 | XLA_REGISTER_CUSTOM_CALL_TARGET(Callback_IsInvoked, "CUDA"); |
| 38 | |
| 39 | TEST_F(CustomCallTest, IsInvoked) { |
| 40 | XlaBuilder b(TestName()); |
| 41 | CustomCall(&b, "Callback_IsInvoked", /*operands=*/{}, |
| 42 | ShapeUtil::MakeShape(F32, {}), |
| 43 | /*opaque=*/""); |
| 44 | EXPECT_FALSE(is_invoked_called); |
| 45 | TF_ASSERT_OK(Execute(&b, {}).status()); |
| 46 | EXPECT_TRUE(is_invoked_called); |
| 47 | } |
| 48 | |
| 49 | TEST_F(CustomCallTest, UnknownTarget) { |
| 50 | XlaBuilder b(TestName()); |
nothing calls this directly
no test coverage detected