OpenResearch

Lambda with the CLI

Add a Lambda GPU instance to your SSH configuration, then select it as a compute target in the local orx dashboard.

1. Add your SSH key

In the Lambda dashboard, open SSH Keys, click Add SSH key, and paste your computer's public key. Select that key when launching the instance.

bash
cat ~/.ssh/id_ed25519.pub
Lambda SSH Keys page showing the Add SSH key dialog

2. Add an SSH alias

Find the instance's IP address in Lambda. Instances use port 22 and the ubuntu user.

text
Host lambda-gpu
  HostName <ip-address>
  User ubuntu
  IdentityFile ~/.ssh/id_ed25519
bash
ssh lambda-gpu

3. Select it in orx

Run orx up, then open Settings > Compute > SSH. Test lambda-gpu and make it the default compute target if desired. The machine needs git and bash.