Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setStatus (0.18 sec)

  1. tensorflow/c/c_api.cc

          ->set_disable_optimize_for_static_graph(true);
    }
    
    void TF_TensorFromProto(const TF_Buffer* from, TF_Tensor* to,
                            TF_Status* status) {
      TF_SetStatus(status, TF_OK, "");
      tensorflow::TensorProto from_tensor_proto;
      status->status = BufferToMessage(from, &from_tensor_proto);
      if (!status->status.ok()) {
        return;
      }
      status->status =
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api.cc

          }
    
          // Rest are not supported.
          if (default_value.list().shape_size() > 0 ||
              default_value.list().func_size() > 0 ||
              default_value.list().tensor_size() > 0) {
            TF_SetStatus(
                status, TF_UNIMPLEMENTED,
                tensorflow::strings::StrCat("Unable to get setfor default value: ",
                                            default_value.DebugString())
                    .data());
    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