You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Access Midway 3 via Thinlinc (remote access tool; https://midway3.rcc.uchicago.edu/). Install ThinLinc Desktop client if you want a more stable connection to Midway 3. Here, you can open your terminal.
In the ThinLinc terminal (Midway 3 terminal), run the following command. This allows you to run python codes on the Midway. Install the required packages (e.g., transformers) using pip.
To use GPU (cuda), you need to start the sinteractive session using the following command. Change the RAM memory and the number of cpu cores as you need. After the sinteractive session is started, follow (3) to run the python code. (Note that you cannot use pip command in the sinteractive session. You need to install all required packages before you get into sinteractive session.)
sinteractive --account=soci40133 --partition=gpu --mem=100G --time=02:00:00 --gres=gpu:1 --cpus-per-task=4
module load python
module load cuda
source activate pytorch-gpu-1.2-cuda-10.0
python [.py code you want to run]
The text was updated successfully, but these errors were encountered:
Access Midway 3 via Thinlinc (remote access tool; https://midway3.rcc.uchicago.edu/). Install ThinLinc Desktop client if you want a more stable connection to Midway 3. Here, you can open your terminal.
Move your codes and files to Midway 3. (See "Data Transfer" document in the user guide: https://mdw3.rcc.uchicago.edu/user-guide/).
In the ThinLinc terminal (Midway 3 terminal), run the following command. This allows you to run python codes on the Midway. Install the required packages (e.g., transformers) using pip.
The text was updated successfully, but these errors were encountered: