Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SetAttrFunction (0.09 sec)

  1. tensorflow/c/eager/c_api_unified_experimental_graph.cc

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

      return op_->SetAttrShape(attr_name, dims, num_dims);
    }
    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.");
    }
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api.cc

    }
    
    void TFE_OpSetAttrFunction(TFE_Op* op, const char* attr_name,
                               const TFE_Op* value) {
      auto s = tensorflow::unwrap(op)->SetAttrFunction(
          attr_name, tensorflow::unwrap(const_cast<TFE_Op*>(value)));
      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