| 58 | class TestOp2 : public ::tensorflow::OpKernel { |
| 59 | public: |
| 60 | explicit TestOp2(::tensorflow::OpKernelConstruction* context) |
| 61 | : OpKernel(context) { |
| 62 | ::tensorflow::Status status = context->MatchSignature( |
| 63 | {::tensorflow::DT_INT32}, {::tensorflow::DT_INT32}); |
| 64 | match_signature_ = status.ok(); |
| 65 | context->SetStatus(status); |
| 66 | } |
| 67 | void Compute(::tensorflow::OpKernelContext* context) override {} |
| 68 | }; |
| 69 |
nothing calls this directly
no test coverage detected