How to set up a good PyTorch environment on Apple Silicon

Apple silicon refers to the arm64 architecture chips designed by Apple and used by new Macbook laptops, also known as M1, M2 Macbooks. It's different from old generations of Macbooks, because those use Intel x86_64 architecture chips. You can find out these information on your Macbook's system information. So why do you care? You care because you care about performance when you want to do AI, research, development, etc. It's best to get the best performance natively out of your Macbook instead of the other way round. So make sure you check whether you are installing a package built for arm64 or x86_64, before doing the real AI stuff.

Install arm64 miniconda

The first step to make things right is to install the Miniconda version for MacOSX arm64:

mkdir -p ~/miniconda3 curl https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-arm64.sh -o ~/miniconda3/miniconda.sh bash ~/miniconda3/miniconda.sh -b -u -p ~/miniconda3 rm -rf ~/miniconda3/miniconda.sh

Install arm64 pytorch

Since we installed miniconda's arm64 version, it automatically installs the correct pytorch and python versions in the arm64 architecture for us, using the following command:

conda create -n tutorial-1 python=3.11 pytorch -c pytorch

It installs the correct version for arm64, which you can see from the command's output, something like the this:

pytorch pytorch/osx-arm64::pytorch-2.3.1-py3.11_0

Verify MPS support in pytorch

MPS stands for Metal Performance Shader, which is Apple's GPU programming language, corresponding to Nvidia's CUDA. We need MPS available so as to do efficient ML computation on Macbook's Apple Silicon.

The code below should output no assertion errors if you are running it on Apple Silicon, as well as having installed the arm64 version of pytorch.

import torch assert torch.backend.mps.is_available(), 'pytorch MPS not available'

As of now, you have set up a good PyTorch environment that allows you to take adavantage of all the computational power Apple Silicon has to offer. Enjoy!

If you like what you see here, please consider buymeacoffee🤗

大哥、大姐、大爷、大妈,赏我5美刀,支持我一下呗