Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SetAttrFunctionList (0.31 sec)

  1. tensorflow/c/eager/gradients.cc

      return op_->SetAttrShapeList(attr_name, dims, num_dims, num_values);
    }
    Status SetAttrFunctionList(AbstractOperation* op_, const char* attr_name,
                               absl::Span<const AbstractOperation*> values,
                               ForwardOperation* forward_op_) {
      return tensorflow::errors::Unimplemented(
          "SetAttrFunctionList has not been "
          "implemented yet.");
    }
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Feb 15 09:49:45 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_unified_experimental_graph.cc

          }
        }
        op_->node_builder.Attr(attr_name, shapes);
        return absl::OkStatus();
      }
      Status SetAttrFunctionList(
          const char* attr_name,
          absl::Span<const AbstractOperation*> values) override {
        return tensorflow::errors::Unimplemented(
            "SetAttrFunctionList has not been implemented yet.");
      }
      // For LLVM style RTTI.
      static bool classof(const AbstractOperation* ptr) {
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Mar 12 20:00:09 GMT 2024
    - 15.4K bytes
    - Viewed (1)
  3. tensorflow/c/eager/c_api.cc

    }
    
    void TFE_OpSetAttrFunctionList(TFE_Op* op, const char* attr_name,
                                   const TFE_Op** value, int num_values) {
      auto s = tensorflow::unwrap(op)->SetAttrFunctionList(
          attr_name, {reinterpret_cast<const tensorflow::AbstractOperation**>(
                          tensorflow::unwrap(value)),
                      static_cast<size_t>(num_values)});
      if (!s.ok()) {
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Mar 12 20:00:09 GMT 2024
    - 43.9K bytes
    - Viewed (2)
Back to top