| 432 | public: |
| 433 | explicit TestOp(OpKernelConstruction* ctx) : OpKernel(ctx) {} |
| 434 | void Compute(OpKernelContext* ctx) override { ctx->set_output(0, Tensor()); } |
| 435 | }; |
| 436 | REGISTER_KERNEL_BUILDER(Name("TestOpWithNoGrad").Device(DEVICE_CPU), TestOp); |
| 437 | #ifdef TENSORFLOW_USE_SYCL |
nothing calls this directly
no test coverage detected