Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for AddParameter (0.29 sec)

  1. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

      }
    
      void Release() override { delete this; }
    
      AbstractOperation* CreateOperation() override {
        return new MlirAbstractOp(context_.get(), this);
      }
      Status AddParameter(tensorflow::DataType dtype,
                          const tensorflow::PartialTensorShape& shape,
                          TracingTensorHandle** handle) override;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_unified_experimental_graph.cc

            name_(name) {}
    
      void Release() override { delete this; }
    
      TracingOperation* CreateOperation() override {
        return new GraphOperation(graph_.get());
      }
    
      Status AddParameter(DataType dtype, const PartialTensorShape& shape,
                          TracingTensorHandle** output) override {
        TracingOperationPtr operation(CreateOperation());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top