-
Notifications
You must be signed in to change notification settings - Fork 47
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
MPS Support #67
base: main
Are you sure you want to change the base?
MPS Support #67
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for getting this out quick! I will test it on some cuda devices later today
cube3d/vq_vae_encode_decode.py
Outdated
@@ -125,7 +125,11 @@ def run_shape_decode( | |||
help="Path to save the recovered mesh file.", | |||
) | |||
args = parser.parse_args() | |||
device = torch.device("cuda") if torch.cuda.is_available() else torch.device("cpu") | |||
device = ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lets move device selection to a util function in https://github.com/Roblox/cube/blob/main/cube3d/inference/utils.py since its being used at-least twice
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
select_device()
added to utils 👍
🔥 Summary
Adds Metal Performance Shaders (MPS) for PyTorch to boost performance on MacOS with Apple Silicon/AMD GPUs. Also updates the
Cache
class with a device-awareupdate
method.📖 📷 Additional context
kv_cache
now handled withupdate
methodgenerate
andvq_vae_encode_decode
updated to include mps support🛠 Testing instructions
Mesh Generation, CPU
Output
Mesh Generation, MPS
Output
✅ Checklist