Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dynamically choose the best device #10

Open
bibhas2 opened this issue Jan 30, 2025 · 0 comments
Open

Dynamically choose the best device #10

bibhas2 opened this issue Jan 30, 2025 · 0 comments

Comments

@bibhas2
Copy link

bibhas2 commented Jan 30, 2025

I think it will be best if the code picked the best device automatically. This will also support Mac's mps device.

def get_best_device():
  if torch.backends.mps.is_available():
    return "mps"
  elif torch.cuda.is_available():
    return "cuda"
  else:
    return "cpu"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant