Compute Resources
Compute Resources
CamberCloud provides flexible compute resources from small analysis tasks to large-scale GPU simulations. Nova automatically suggests appropriate resources, or you can specify exactly what you need.
Node Sizes
| Size | vCPUs | Memory | Best For |
|---|---|---|---|
| XMICRO | 1 | 2 GB | Quick tests, small scripts |
| MICRO | 2 | 4 GB | Light data processing |
| XXSMALL | 4 | 8 GB | Standard analysis |
| XSMALL | 8 | 16 GB | Medium workloads |
| SMALL | 16 | 32 GB | Parallel processing |
| MEDIUM | 32 | 64 GB | Large datasets |
| LARGE | 64 | 128 GB | Heavy computation |
| XLARGE | 96 | 192 GB | Intensive workloads |
| XXLARGE | 128 | 256 GB | Maximum performance |
GPU Options
Add GPU acceleration for machine learning and simulations:
@nova Run my training script on a SMALL node with GPUAvailable GPU: NVIDIA L4 (24GB VRAM)
Choosing Resources
Let Nova Decide
Simply describe your task and Nova recommends appropriate resources:
@nova I need to process 10GB of genomics dataSpecify Explicitly
For precise control:
@nova Run gromacs simulation using MEDIUM node with 4 parallel nodesVia SDK
job = camber.mpi.create_job(
command="python train.py",
node_size="SMALL",
num_nodes=2,
with_gpu=True
)Cost Optimization
- Start small and scale up if needed
- Use spot instances for fault-tolerant workloads
- Monitor job resource usage in logs
Related: Job Attributes | Nodes & Pricing