Core Concepts
GPU SKUs
Available GPU configurations and how to select them.
A SKU picks how many GPUs of which type your session runs on. It follows the
pattern gpu_{count}x_{model} — for example gpu_8x_b200 is 8× NVIDIA B200.
Bigger model or higher count means more memory and more cost per hour. CPU-only
SKUs exist too (cpu_generic).
List everything currently available from the terminal:
fcloud skusFind your SKU
Filter by GPU count, compare accelerator memory, and click any SKU to copy its
--sku value:
GPUs
| SKU | GPUs | Memory |
|---|---|---|
| CPU only | — | |
| 1 × T4 | 16 GB | |
| 1 × A10G | 24 GB | |
| 1 × L4 | 24 GB | |
| 1 × L40S | 48 GB | |
| 1 × RTX 6000 Ada | 48 GB | |
| 4 × T4 | 64 GB(16 GB/GPU) | |
| 1 × H100 | 80 GB | |
| 4 × A10G | 96 GB(24 GB/GPU) | |
| 4 × L4 | 96 GB(24 GB/GPU) | |
| 2 × RTX 6000 Ada | 96 GB(48 GB/GPU) | |
| 8 × T4 | 128 GB(16 GB/GPU) | |
| 8 × V100 | 128 GB(16 GB/GPU) | |
| 1 × H200 | 141 GB | |
| 8 × A10G | 192 GB(24 GB/GPU) | |
| 8 × L4 | 192 GB(24 GB/GPU) | |
| 4 × L40S | 192 GB(48 GB/GPU) | |
| 4 × RTX 6000 Ada | 192 GB(48 GB/GPU) | |
| 1 × B200 | 192 GB | |
| 8 × L40S | 384 GB(48 GB/GPU) | |
| 8 × RTX 6000 Ada | 384 GB(48 GB/GPU) | |
| 8 × A100 | 640 GB(80 GB/GPU) | |
| 8 × H100 | 640 GB(80 GB/GPU) | |
| 8 × H200 | 1.1 TB(141 GB/GPU) | |
| 8 × B200 | 1.5 TB(192 GB/GPU) | |
| 8 × B300 | 2.3 TB(288 GB/GPU) |
26 of 26 SKUs · click a SKU to copy its
--sku valueUsing a SKU
Pass it as --sku (CLI) or sku= (SDK). Pick a GPU below to see the exact command:
$fcloud exec--skunvidia-smi
pick a GPU above · compare all SKUs
# Python SDK
s = project.session(sku="gpu_1x_a10g")
s.run(["nvidia-smi"])
s.close()The dispatcher routes your request to an available host matching the requested
SKU. If none are free, the session waits in preparing until one is provisioned.