Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for esterni (0.17 sec)

  1. tensorflow/c/c_api.cc

      }
    
      status->status = Reset(opt->options, container_names);
    }
    
    extern "C" {
    
    void TF_Reset(const TF_SessionOptions* opt, const char** containers,
                  int ncontainers, TF_Status* status) {
      TF_Reset_Helper(opt, containers, ncontainers, status);
    }
    
    }  // end extern "C"
    
    namespace tensorflow {
    
    void RecordMutation(TF_Graph* graph, const TF_Operation& op,
    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)
  2. tensorflow/c/eager/c_api.cc

          {reinterpret_cast<tensorflow::AbstractTensorHandle**>(
               tensorflow::unwrap(inputs)),
           static_cast<size_t>(num_inputs)});
    }
    
    extern int TFE_OpGetFlatInputCount(const TFE_Op* op, TF_Status* status) {
      return tensorflow::unwrap(op)->GetInputs().size();
    }
    
    extern TFE_TensorHandle* TFE_OpGetFlatInput(const TFE_Op* op, int index,
                                                TF_Status* status) {
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Mar 12 20:00:09 GMT 2024
    - 43.9K bytes
    - Viewed (2)
Back to top