Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for exists (0.17 sec)

  1. tensorflow/c/c_api.h

    typedef struct TF_DeviceList TF_DeviceList;
    
    // Lists all devices in a TF_Session.
    //
    // Caller takes ownership of the returned TF_DeviceList* which must eventually
    // be freed with a call to TF_DeleteDeviceList.
    TF_CAPI_EXPORT extern TF_DeviceList* TF_SessionListDevices(TF_Session* session,
                                                               TF_Status* status);
    
    // Lists all devices in a TF_Session.
    //
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  2. tensorflow/c/eager/c_api_experimental.h

        int64_t init_timeout_in_ms, int retries, TF_Status* status,
        bool clear_existing_contexts);
    
    // Checks whether a remote worker is alive or not. This will return true even if
    // the context doesn't exist on the remote worker.
    TF_CAPI_EXPORT extern bool TFE_ContextCheckAlive(TFE_Context* ctx,
                                                     const char* worker_name,
                                                     TF_Status* status);
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Feb 21 22:37:46 GMT 2024
    - 39.5K bytes
    - Viewed (0)
  3. tensorflow/c/eager/tape.h

    namespace {
    
    template <typename BackwardFunction, typename TapeTensor>
    struct BackpropInitialState {
      OpTape<BackwardFunction, TapeTensor> op_tape;
    
      // Map from tensor ID to how many references still exist for this tensor in
      // the tape.
      std::unordered_map<int64_t, int64_t> tensor_usage_counts;
    
      // Maps from op ID to how many output tensors of this op still need to have
      // their gradients computed.
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 02 12:40:29 GMT 2024
    - 47.2K bytes
    - Viewed (1)
  4. tensorflow/c/eager/immediate_execution_context.h

      virtual Status AsyncWait() = 0;
    
      // Add a function (serialized FunctionDef protocol buffer) so that it can
      // be executed as an op. Return error if the function with the same name
      // already exists.
      virtual Status AddFunctionDef(const FunctionDef& fdef) = 0;
    
      // Notifies about the function removal.
      virtual Status AddRemoveFunctionNotifier(const string& func,
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Jul 06 08:34:00 GMT 2023
    - 12.3K bytes
    - Viewed (0)
Back to top