Submit a deck (inline files) and start it
submit_jobOne call: create a hosted GPU job, upload the deck given INLINE as {relative_path: text}, and queue it. Total inline size <= 8 MB; for larger decks use create_job, PUT the tarball to upload_url, then start_job. Billing starts at the first heartbeat (state running) and stops at done/failed/cancelled. The deck is executed as a program on an isolated GPU pod.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| gpu | No | GPU class; call account for the currently offered classes and hourly rates. Default any = cheapest available | |
| files | Yes | Deck contents: {"in.lmp": "...", "data.al": "..."}; paths relative, no '..'; must include `input` | |
| input | Yes | Relative path of the LAMMPS (or runner) input script inside the deck, e.g. in.lmp | |
| label | No | Free text <= 120 chars shown in job lists | |
| launch | No | Launch template; omit for the default KOKKOS/CUDA LAMMPS command line | |
| runner | No | Runner flavour: lammps (default) or openmm (beta) | |
| estimate_s | No | Your runtime guess in seconds; only used for the balance pre-check (min 900 s at the rate) | |
| wall_limit_s | No | Hard cap in seconds (default 14400, max 86400); the job fails at the cap and is billed to it |