| 25 | XlaDeviceDummyOp::XlaDeviceDummyOp(OpKernelConstruction* ctx) : OpKernel(ctx) {} |
| 26 | |
| 27 | void XlaDeviceDummyOp::Compute(OpKernelContext* ctx) { |
| 28 | LOG(FATAL) << "Attempted to execute Op " << name() << " type " |
| 29 | << type_string() << " on an XLA device. This should never happen."; |
| 30 | } |
| 31 | |
| 32 | XlaAssignVariableOp::XlaAssignVariableOp(OpKernelConstruction* c) |
| 33 | : OpKernel(c) { |
nothing calls this directly
no test coverage detected