Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SetAttrFunctionName (0.1 sec)

  1. tensorflow/c/eager/gradients_internal.h

                              ForwardOperation*);
    absl::Status SetAttrFunction(AbstractOperation*, const char* attr_name,
                                 const AbstractOperation* value, ForwardOperation*);
    absl::Status SetAttrFunctionName(AbstractOperation*, const char* attr_name,
                                     const char* value, size_t length,
                                     ForwardOperation*);
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. tensorflow/c/eager/abstract_operation.h

      virtual absl::Status SetAttrFunction(const char* attr_name,
                                           const AbstractOperation* value) = 0;
      virtual absl::Status SetAttrFunctionName(const char* attr_name,
                                               const char* value,
                                               size_t length) = 0;
      virtual absl::Status SetAttrTensor(const char* attr_name,
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. tensorflow/c/eager/gradients.cc

          "SetAttrFunction has not been implemented yet.");
    }
    absl::Status SetAttrFunctionName(AbstractOperation* op_, const char* attr_name,
                                     const char* value, size_t length,
                                     ForwardOperation* forward_op_) {
      return tensorflow::errors::Unimplemented(
          "SetAttrFunctionName has not been implemented "
          "yet.");
    }
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api_unified_experimental_graph.cc

                                   const AbstractOperation* value) override {
        return tensorflow::errors::Unimplemented(
            "SetAttrFunction has not been implemented yet.");
      }
      absl::Status SetAttrFunctionName(const char* attr_name, const char* value,
                                       size_t length) override {
        tensorflow::NameAttrList func_name;
        func_name.set_name(string(value, value + length));
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api.cc

      }
    }
    
    void TFE_OpSetAttrFunctionName(TFE_Op* op, const char* attr_name,
                                   const char* data, size_t length) {
      auto s = tensorflow::unwrap(op)->SetAttrFunctionName(attr_name, data, length);
      if (!s.ok()) {
        LOG(WARNING) << "Unable to set attribute: " << attr_name;
      }
    }
    
    void TFE_OpSetAttrTensor(TFE_Op* op, const char* attr_name, TF_Tensor* tensor,
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 43.9K bytes
    - Viewed (0)
Back to top