Installing Pytorch and Transformers on IBM Power 9 architecture
To install pytorch and related components on the power 9 architecture follow these steps.
source activateAdd a new config channel.
conda config --prepend channels \
https://public.dhe.ibm.com/ibmdl/export/pub/software/server/ibm-ai/conda-early-access/linux-ppc64le/Create a new conda environment and activate it
conda create --name early_access python=3.6
conda activate early_accessInstall pytorch and ipython.
conda install pytorch
conda install ipythonCheck if everything is working.
Last updated