Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Younis (0.16 sec)

  1. tensorflow/c/c_api.h

    //
    // If index is out of bounds, an error code will be set in the status object,
    // and -1 will be returned.
    TF_CAPI_EXPORT extern int64_t TF_DeviceListMemoryBytes(
        const TF_DeviceList* list, int index, TF_Status* status);
    
    // Retrieve the incarnation number of a given device.
    //
    // If index is out of bounds, an error code will be set in the status object,
    // and 0 will be returned.
    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/experimental/filesystem/filesystem_interface.h

    /// methods, the last argument is always a `TF_Status *` (or an array of such
    /// pointers) owned by core TensorFlow and guaranteed to not be `nullptr`.
    ///
    /// To ensure ABI and API compatibility, we have out-of-bounds data that is used
    /// by both core TensorFlow and the plugin at load time. We don't include this
    /// data in the structures here to prevent cases when padding/packing enabled by
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
  3. tensorflow/c/eager/tape.h

        for (auto it : op_it->second.input_tensor_id) {
          auto count_it = result.tensor_usage_counts.find(it);
          if (count_it != result.tensor_usage_counts.end()) {
            count_it->second++;
          } else {
            result.tensor_usage_counts[it] = 1;
            if (tensor_tape.find(it) != tensor_tape.end()) {
              tensor_stack.push_back(it);
            }
          }
        }
    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