Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for inclusive (2.25 sec)

  1. tensorflow/c/c_api.cc

    extern "C" {
    
    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 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_function.cc

    Status ProcessInputs(
        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 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 13.6K bytes
    - Viewed (2)
  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 30 12:39:09 GMT 2024
    - Last Modified: Fri Feb 09 07:47:20 GMT 2024
    - 25.4K bytes
    - Viewed (1)
Back to top