Summarising your lovelife into neat little TL;DR's since 2k25.
by the Perceptron Party
For quick setup of a GPU from Computa, we have some handy scripts. To use them to streamline your workflow, do the following:
- Update your
~/.ssh/configfile with the ip/port of the new server. It should look something like this:
Host mlx
HostName 80.15.7.37
User root
Port 43209
IdentityFile ~/.ssh/id_mlx_computa
- Run
./send.shfrom root. If you named the host something other thanmlxin the config, or your GitHub private key is called something other thanid_ed25519_gh, then include these as args:
./send.sh [host] [private_key]-
SSH into the remote (e.g. by running
ssh mlxassuming given config) -
Run
source ssh.shon entry to the remote (ssh.shshould have been transferred to the home dir of therootuser). You will be prompted for the password to your GitHub private key. This will clone the repo (into/workspace/), cd into it, and further runsource setup.shto update packages, sync uv, activate your virtual environment, etc. You can then runpython ...as required.
NB. If the remote is some cutting edge GPU (e.g. RTX 5090), it will require the nightly version of torch. To let the script handle this, export BEAST_MODE=1 on the remote, before step 3.