Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for OpKernel (0.44 sec)

  1. tensorflow/c/c_api_test.cc

      TF_DeleteBuffer(api_def_buf);
      TF_DeleteApiDefMap(api_def_map);
      TF_DeleteBuffer(op_list_buf);
    }
    
    class DummyKernel : public tensorflow::OpKernel {
     public:
      explicit DummyKernel(tensorflow::OpKernelConstruction* context)
          : OpKernel(context) {}
      void Compute(tensorflow::OpKernelContext* context) override {}
    };
    
    // Test we can query kernels
    REGISTER_OP("TestOpWithSingleKernel")
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
  2. RELEASE.md

            losses.
        *   Added `LinearOperator.adjoint` and `LinearOperator.H` (alias).
        *   Expose CriticalSection in core as `tf.CriticalSection`.
        *   Enhanced graphviz output.
        *   Add opkernel templates for common table operations.
        *   Fix callbacks do not log values in eager mode when a deferred build
            model is used.
        *   `SignatureDef` util functions have been deprecated.
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top