Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for RecordOperation (0.28 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. tensorflow/c/eager/gradients.cc

      AbstractTensorHandle* AggregateGradients(
          absl::Span<AbstractTensorHandle* const> gradient_tensors) const override;
    
      // Calls the passed-in backward function.
      // op_type is the op's name provided in RecordOperation.
      absl::Status CallBackwardFunction(
          const string& op_type, GradientFunction* gradient_function,
          const std::vector<int64_t>& unneeded_gradients,
          absl::Span<AbstractTensorHandle* const> output_gradients,
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Tue Feb 24 06:18:31 GMT 2026
    - 19.6K bytes
    - Click Count (0)
  2. tensorflow/c/eager/gradients_internal.h

    absl::Status SetAttrFunctionList(AbstractOperation*, const char* attr_name,
                                     absl::Span<const AbstractOperation*> values,
                                     ForwardOperation*);
    
    // Make the call to `Tape::RecordOperation`.
    absl::Status Execute(AbstractOperation*, AbstractContext*,
                         absl::Span<AbstractTensorHandle*> retvals,
                         int* num_retvals, ForwardOperation*, Tape*,
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Oct 12 05:11:17 GMT 2024
    - 4.7K bytes
    - Click Count (0)
  3. tensorflow/c/eager/gradients.h

      // 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,
                           absl::Span<AbstractTensorHandle* const> outputs,
                           GradientFunction* gradient_function,
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Oct 12 05:11:17 GMT 2024
    - 6.9K bytes
    - Click Count (0)
  4. docs/smb3-features/03-multi-channel-design.md

            }
            
            public long getThroughput() {
                return bytesSent.get() + bytesReceived.get();
            }
        }
        
        public void recordOperation(String channelId, long bytes, long latency, boolean success) {
            ChannelStatistics stats = channelStats.computeIfAbsent(channelId, 
                k -> new ChannelStatistics());
                
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 02:53:50 GMT 2025
    - 39.6K bytes
    - Click Count (0)
  5. tensorflow/c/eager/gradients_test.cc

      Tape tape(/*persistent=*/false);
      tape.Watch(inputs[0]);
      AbstractTensorHandle* neg_output;
      TF_RETURN_IF_ERROR(ops::Neg(ctx, inputs[0], &neg_output, "Neg"));
      tape.RecordOperation(inputs, {neg_output}, nullptr, "Neg");
      return tape.ComputeGradient(ctx,
                                  /*targets=*/{neg_output},
                                  /*sources=*/inputs,
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Oct 12 05:11:17 GMT 2024
    - 7K bytes
    - Click Count (0)
Back to Top