Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for InsertKeyValue (0.27 sec)

  1. tensorflow/c/experimental/next_pluggable_device/c_api.cc

                                              TF_Status* status) {
      auto* cc_agent = reinterpret_cast<tsl::CoordinationServiceAgent*>(agent);
      absl::Status cc_status = cc_agent->InsertKeyValue(
          std::string_view(key, key_size), std::string_view(value, value_size));
      status->status = cc_status;
    }
    
    TF_Buffer* ProcessGetKeyValueResult(absl::StatusOr<std::string> value,
    C++
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Tue Jan 09 00:52:04 GMT 2024
    - 13.9K bytes
    - Viewed (1)
  2. tensorflow/c/eager/c_api_experimental.cc

      if (coord_agent == nullptr) {
        status->status = tensorflow::errors::FailedPrecondition(
            "Coordination service agent is not enabled.");
        return;
      }
      status->status = coord_agent->InsertKeyValue(key, value);
    }
    
    void TFE_GetConfigKeyValue(TFE_Context* ctx, const char* key,
                               int64_t timeout_in_ms, TF_Buffer* value_buf,
                               TF_Status* status) {
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Apr 11 23:52:39 GMT 2024
    - 35.9K bytes
    - Viewed (3)
Back to top