Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for HandleDeviceError (0.27 sec)

  1. tensorflow/compiler/jit/xla_device.cc

        return absl::OkStatus();
      }
      Status status = stream->RefreshStatus();
      if (!status.ok()) {
        // Ignore errors from HandleDeviceError, since by definition the status is
        // already non-ok, so there's nothing extra to report if HandleDeviceError
        // itself returns an error.
        HandleDeviceError().IgnoreError();
      }
      return status;
    }
    
    XlaDeviceOpRegistrations* RegisterXlaDeviceKernels(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_device.h

      // shape_representation_fns.
      absl::StatusOr<std::vector<DeviceContext*>> GetDeviceContextLocked()
          TF_EXCLUSIVE_LOCKS_REQUIRED(mu_);
    
      // Handles error when RefreshStatus sees !status.ok().
      Status HandleDeviceError();
    
      mutable mutex mu_;
      // The metadata of this XlaDevice.
      const Metadata xla_metadata_;
      // Which hardware device in the client's platform this XlaDevice controls.
      const int device_ordinal_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top