Example jobs for the C3 GPU compute platform.
# Install C3 CLI
curl -fsSL https://cthree.cloud/install.sh | sh
# Login
c3 login
# Clone and run an example
git clone https://github.com/c3-research/c3-examples.git
cd c3-examples/jax-matmul
c3 deploy
# Check status
c3 squeue
# Download results
c3 pullMinimal "hello world" example. Prints system info and runs nvidia-smi to verify GPU access.
c3 deploy hello.sbatchJAX matrix multiplication benchmark comparing loop-based vs vectorized (jax.lax.scan) approaches. Demonstrates GPU performance and generates a benchmark plot.
Features:
- Uses UV lockfile for reproducible dependencies
- Loads matrices from data file
- Outputs benchmark plot to
results/
cd jax-matmul
c3 deploy