Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Markus (0.24 sec)

  1. tensorflow/c/eager/tape.h

      // Looks up the ID of a Gradient.
      virtual int64_t TensorId(Gradient* tensor) const = 0;
    
      // Converts a Gradient to a TapeTensor.
      virtual TapeTensor TapeTensorFromGradient(Gradient* gradient) const = 0;
    
      // Marks the following gradient as a result so it's not consumed by backward
      // functions.
      virtual void MarkAsResult(Gradient* gradient) const = 0;
    
      // Deletes the input tensor.
    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)
  2. tensorflow/c/eager/gradients.h

      // earlier call to `GradientTape::Watch` or being an output of an op with
      // watched inputs.
      void Watch(const AbstractTensorHandle*);
      // Records an operation with given inputs and outputs
      // on the tape and marks all its outputs as watched if at
      // least one input of the op is watched and has a trainable dtype.
      // op_name is optional and is used for debugging only.
      void RecordOperation(absl::Span<AbstractTensorHandle* const> inputs,
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Sep 26 10:27:05 GMT 2022
    - 6.9K bytes
    - Viewed (0)
Back to top