Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for FakeBinaryOp (0.15 sec)

  1. tensorflow/compiler/jit/partially_decluster_pass_test.cc

    REGISTER_OP("FakeResourceVar").Output("out: resource");
    
    REGISTER_OP("FakeResourceUpdate")
        .Input("in: resource")
        .Output("out: resource")
        .Output("something_else: int32");
    
    class FakeBinaryOp : public OpKernel {
     public:
      explicit FakeBinaryOp(OpKernelConstruction* context) : OpKernel(context) {}
    
      void Compute(OpKernelContext* ctx) override { CHECK(false); }
    };
    
    class FakeResourceUpdateOp : public OpKernel {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 23K bytes
    - Viewed (0)
Back to top