Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AbstractOperation (0.15 sec)

  1. tensorflow/c/eager/gradients.cc

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

      }
      absl::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) {
        return ptr->getKind() == kGraph;
      }
      ~GraphOperation() override {}
    
     private:
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api.cc

                                   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()) {
        LOG(WARNING) << "Unable to set attribute: " << attr_name;
      }
    }
    
    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