Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Methods (0.14 sec)

  1. tensorflow/c/eager/c_api_experimental.h

      int version = TFE_CUSTOM_DEVICE_VERSION;
      // Method to copy a tensor to the custom device.
      TFE_TensorHandle* (*copy_tensor_to_device)(TFE_Context* context,
                                                 TFE_TensorHandle* tensor,
                                                 TF_Status* status,
                                                 void* device_info);
    
      // Method to copy a tensor from the custom device to a target device.
    C
    - Registered: Tue Apr 30 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

            : backward_tape(backward_tape), accumulating(accumulating) {}
        // Set temporarily while in the Accumulate method; if backward_tape is not
        // nullptr then we forward op executions to it so Accumulate can compute a
        // backward pass on its backward function.
        //
        // Not owned by the ForwardAccumulator. The method which sets
        // `backward_tape` keeps ownership.
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 02 12:40:29 GMT 2024
    - 47.2K bytes
    - Viewed (1)
Back to top