diff --git a/setup/validate_requirements.py b/setup/validate_requirements.py index cb13840..1f6e481 100644 --- a/setup/validate_requirements.py +++ b/setup/validate_requirements.py @@ -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.')