Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. tensorflow/c/eager/tape.h

        absl::Span<const tensorflow::DataType> dtypes) {
      if (call_state_.top().backward_tape != nullptr) {
        // If we're forwarding Accumulate calls to backward_tape's RecordOperation,
        // we should also delegate ShouldRecord.
        return call_state_.top().backward_tape->ShouldRecord(tensor_ids, dtypes);
      }
      if (call_state_.top().accumulating) {
        return false;
      }
      for (int i = 0; i < tensor_ids.size(); ++i) {
    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/immediate_execution_context.h

      // Returns whether the runtime is backed by TFRT or the legacy TF Eager
      // Runtime. This is necessary to decouple runtime-dependent
      // code that is layered on top of the runtime.
      virtual bool UsesTFRT() = 0;
    
      // List attributes of available devices
      virtual void ListDevices(std::vector<DeviceAttributes>* devices) = 0;
    
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Jul 06 08:34:00 GMT 2023
    - 12.3K bytes
    - Viewed (0)
Back to top