Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for exists (0.16 sec)

  1. 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)
  2. 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)
Back to top