Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TF_EXCLUSIVE_LOCKS_REQUIRED (0.29 sec)

  1. tensorflow/c/c_api_function.cc

        const TF_Graph* fn_body, const char* fn_name, int ninputs,
        const TF_Output* inputs, std::vector<OutputTensor>* input_tensors,
        std::unordered_map<const Node*, std::vector<int>>* input_nodes)
        TF_EXCLUSIVE_LOCKS_REQUIRED(fn_body->mu) {
      input_tensors->reserve(ninputs);
      for (int i = 0; i < ninputs; ++i) {
        Node* node = inputs[i].oper ? &inputs[i].oper->node : nullptr;
        int idx = inputs[i].index;
    
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 13.6K bytes
    - Viewed (2)
  2. tensorflow/c/c_api_internal.h

                                               TF_Status* status);
    
    void RecordMutation(TF_Graph* graph, const TF_Operation& op,
                        const char* mutation_type)
        TF_EXCLUSIVE_LOCKS_REQUIRED(graph->mu);
    
    bool ExtendSessionGraphHelper(TF_Session* session, TF_Status* status)
        TF_LOCKS_EXCLUDED(session->graph->mu, session->mu);
    
    std::string getTF_OutputDebugString(TF_Output node);
    
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Sat May 13 00:49:12 GMT 2023
    - 7.6K bytes
    - Viewed (0)
  3. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

                   std::vector<TFE_TensorHandle*> inputs,
                   const TFE_OpAttrs* attributes, int expected_max_outputs,
                   std::vector<TensorHandlePtr>* outputs, TF_Status* status) const
          TF_EXCLUSIVE_LOCKS_REQUIRED(execution_mutex_);
    
      enum class ExecutionState {
        kReadyToExecute,
        kHasResult,
        kIdle,
        kShuttingDown,
      };
    
      tensorflow::mutex execution_mutex_;
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Feb 09 07:47:20 GMT 2024
    - 25.4K bytes
    - Viewed (1)
  4. tensorflow/c/c_api.cc

    TF_OperationDescription* TF_NewOperationLocked(TF_Graph* graph,
                                                   const char* op_type,
                                                   const char* oper_name)
        TF_EXCLUSIVE_LOCKS_REQUIRED(graph->mu) {
      return new TF_OperationDescription(graph, op_type, oper_name);
    }
    
    TF_OperationDescription* TF_NewOperation(TF_Graph* graph, const char* op_type,
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
Back to top