Using the CLI
Create Jobs23>
Our platform always selects the least expensive instance type and optimizes for your provided requirements. You can use any container image you want: private and public. If the image is private, please remember to first add your registry via the CLI. As of now, we only support workloads whith CUDA Version 12.3.
Create a job on an instance type with 2 CPU cores:
perian job create --image hello-world --cores 2
Create a job with more specific hardware requirements:
perian job create --image hello-world --cores 8 --memory 45 --accelerator-type V100
Get Job Details
Display all created jobs for your account:
perian job get --all
Display information for a specific job:
perian job get [job-id]
Replace [job-id] with a UUID of a job you have previously created or use the flag --last.
Cancel Jobs
Cancel a job you have started:
perian job cancel [job-id]
Replace [job-id] with a UUID of a job you have previously created.
This will cancel the job immediately.
Browse Instance Types
Browse through all available instance types.
Search for specific number of cores and gigabytes of ram:
perian instance-type get --cores 4 --memory 16
perian instance-type get --accelerators 2
perian instance-type get --accelerator-type A100
perian instance-type get --accelerators 2 --accelerator-type A100
Browse Accelerator Types
Get a list of all available accelerator types:
perian accelerator-type get --all
Search for specific amount of accelerator memory:
perian accelerator-type get --memory 32
Get Billing Information
You can always check your total consumption and bill for the latest month:
perian billing get
You can also specify a specific timeframe to get the bill for:
perian billing get --start-time 2024-05-13 --start-time 2024-05-14
Getting Help
If you encounter any issues or have questions, please contact our support team at [email protected]. Feel free to ask questions in our Slack community and exchange thoughts and feedback with us and other users.