Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TF_FinishOperationLocked (0.24 sec)

  1. tensorflow/c/c_api.cc

        }
      } else {
        desc->node_builder.Attr(attr_name, std::move(attr_value));
      }
    
      status->status = absl::OkStatus();
    }
    
    TF_Operation* TF_FinishOperationLocked(TF_OperationDescription* desc,
                                           TF_Status* status)
        TF_EXCLUSIVE_LOCKS_REQUIRED(desc->graph->mu) {
      Node* ret = nullptr;
    
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 16:27:48 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.h

    //
    // Unless implementing advanced behavior, like custom gradient functions, you
    // most likely need to call `TF_FinishOperation` instead.
    TF_CAPI_EXPORT extern TF_Operation* TF_FinishOperationLocked(
        TF_OperationDescription* desc, TF_Status* status);
    
    // If this function succeeds:
    //   * *status is set to an OK value,
    //   * a TF_Operation is added to the graph,
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
Back to top