Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for SetAttrFunctionName (0.23 sec)

  1. tensorflow/c/experimental/gradients/tape/tape_operation.cc

      return tensorflow::errors::Unimplemented(
          "SetAttrFunction has not been implemented yet.");
    }
    Status TapeOperation::SetAttrFunctionName(const char* attr_name,
                                              const char* value, size_t length) {
      return tensorflow::errors::Unimplemented(
          "SetAttrFunctionName has not been implemented "
          "yet.");
    }
    Status TapeOperation::SetAttrTensor(const char* attr_name,
    C++
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Tue Jun 07 01:53:35 GMT 2022
    - 9K bytes
    - Viewed (1)
  2. tensorflow/c/experimental/gradients/tape/tape_operation.h

                          const int num_dims) override;
      Status SetAttrFunction(const char* attr_name,
                             const AbstractOperation* value) override;
      Status SetAttrFunctionName(const char* attr_name, const char* value,
                                 size_t length) override;
      Status SetAttrTensor(const char* attr_name,
                           AbstractTensorInterface* tensor) override;
    C
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Wed Sep 23 23:12:39 GMT 2020
    - 3.7K bytes
    - Viewed (1)
  3. tensorflow/c/eager/abstract_operation.h

                                  const PartialTensorShape shape);
      virtual Status SetAttrFunction(const char* attr_name,
                                     const AbstractOperation* value) = 0;
      virtual Status SetAttrFunctionName(const char* attr_name, const char* value,
                                         size_t length) = 0;
      virtual Status SetAttrTensor(const char* attr_name,
                                   AbstractTensorInterface* tensor) = 0;
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Jul 14 16:20:41 GMT 2021
    - 6.8K bytes
    - Viewed (0)
  4. tensorflow/c/eager/gradients_internal.h

    Status SetAttrFunction(AbstractOperation*, const char* attr_name,
                           const AbstractOperation* value, ForwardOperation*);
    Status SetAttrFunctionName(AbstractOperation*, const char* attr_name,
                               const char* value, size_t length, ForwardOperation*);
    Status SetAttrTensor(AbstractOperation*, const char* attr_name,
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Sun Oct 24 11:27:35 GMT 2021
    - 4.2K bytes
    - Viewed (0)
  5. tensorflow/c/eager/gradients.cc

          "SetAttrFunction has not been implemented yet.");
    }
    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.");
    }
    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)
  6. tensorflow/c/eager/c_api_unified_experimental_graph.cc

                             const AbstractOperation* value) override {
        return tensorflow::errors::Unimplemented(
            "SetAttrFunction has not been implemented yet.");
      }
      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));
    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)
  7. 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,
    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