Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for SetAttrIntList (0.97 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. tensorflow/c/eager/abstract_operation.h

      virtual absl::Status SetAttrFloatList(const char* attr_name,
                                            const float* values,
                                            int num_values) = 0;
      virtual absl::Status SetAttrIntList(const char* attr_name,
                                          const int64_t* values,
                                          int num_values) = 0;
      virtual absl::Status SetAttrTypeList(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.cc

    }
    absl::Status SetAttrIntList(AbstractOperation* op_, const char* attr_name,
                                const int64_t* values, int num_values,
                                ForwardOperation* forward_op_) {
      forward_op_->attrs.Set(
          attr_name, gtl::ArraySlice<const int64_t>(
                         reinterpret_cast<const int64_t*>(values), num_values));
      return op_->SetAttrIntList(attr_name, values, num_values);
    }
    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)
  3. tensorflow/c/eager/c_api_unified_experimental_graph.cc

                                    int num_values) override {
        op_->node_builder.Attr(attr_name,
                               ArraySlice<const float>(values, num_values));
        return absl::OkStatus();
      }
      absl::Status SetAttrIntList(const char* attr_name, const int64_t* values,
                                  int num_values) override {
        op_->node_builder.Attr(
            attr_name, ArraySlice<const int64_t>(
    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)
  4. tensorflow/c/eager/c_api.cc

      }
    }
    
    void TFE_OpSetAttrIntList(TFE_Op* op, const char* attr_name,
                              const int64_t* values, int num_values) {
      auto s =
          tensorflow::unwrap(op)->SetAttrIntList(attr_name, values, num_values);
      if (!s.ok()) {
        LOG(WARNING) << "Unable to set attribute: " << attr_name;
      }
    }
    
    void TFE_OpSetAttrTypeList(TFE_Op* op, const char* 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