Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for SetAttrStringList (0.08 seconds)

  1. tensorflow/c/eager/abstract_operation.h

      virtual absl::Status SetAttrStringList(const char* attr_name,
                                             const void* const* values,
                                             const size_t* lengths,
                                             int num_values) = 0;
      virtual absl::Status SetAttrStringList(const char* attr_name,
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Oct 12 05:11:17 GMT 2024
    - 7.3K bytes
    - Click Count (0)
  2. tensorflow/c/eager/gradients_internal.h

                                     ForwardOperation*);
    absl::Status SetAttrTensor(AbstractOperation*, const char* attr_name,
                               AbstractTensorInterface* tensor, ForwardOperation*);
    absl::Status SetAttrStringList(AbstractOperation*, const char* attr_name,
                                   const void* const* values, const size_t* lengths,
                                   int num_values, ForwardOperation*);
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Oct 12 05:11:17 GMT 2024
    - 4.7K bytes
    - Click Count (0)
  3. tensorflow/c/eager/gradients.cc

                               ForwardOperation* forward_op_) {
      return absl::UnimplementedError(
          "SetAttrTensor has not been implemented yet.");
    }
    absl::Status SetAttrStringList(AbstractOperation* op_, const char* attr_name,
                                   const void* const* values, const size_t* lengths,
                                   int num_values, ForwardOperation* forward_op_) {
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Tue Feb 24 06:18:31 GMT 2026
    - 19.6K bytes
    - Click Count (0)
  4. tensorflow/c/eager/c_api_unified_experimental_graph.cc

                                 AbstractTensorInterface* tensor) override {
        return tensorflow::errors::Unimplemented(
            "SetAttrTensor has not been implemented yet.");
      }
      absl::Status SetAttrStringList(const char* attr_name,
                                     const void* const* values,
                                     const size_t* lengths,
                                     int num_values) override {
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat May 31 07:13:41 GMT 2025
    - 15.7K bytes
    - Click Count (0)
  5. tensorflow/c/eager/c_api.cc

    void TFE_OpSetAttrStringList(TFE_Op* op, const char* attr_name,
                                 const void* const* values, const size_t* lengths,
                                 int num_values) {
      auto s = tensorflow::unwrap(op)->SetAttrStringList(attr_name, values, lengths,
                                                         num_values);
      if (!s.ok()) {
        LOG(WARNING) << "Unable to set attribute: " << attr_name;
      }
    }
    
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Fri Nov 07 05:55:21 GMT 2025
    - 43.9K bytes
    - Click Count (0)
Back to Top