Merge pull request #3266 from jim60105/fix/typo

fix(validate_requirements): correct typo
pull/3274/head
bmaltais 2025-06-02 19:49:38 -04:00 committed by GitHub
commit 08f2ddcf82
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -135,9 +135,9 @@ def log_cuda_info(torch):
def log_mps_info(torch):
"""Log information about Apple Silicone (MPS)"""
max_reccomended_mem = round(torch.mps.recommended_max_memory() / 1024**2)
max_recommended_mem = round(torch.mps.recommended_max_memory() / 1024**2)
log.info(
f"Torch detected Apple MPS: {max_reccomended_mem}MB Unified Memory Available"
f"Torch detected Apple MPS: {max_recommended_mem}MB Unified Memory Available"
)
log.warning('MPS support is still experimental, proceed with caution.')