GPU sandboxes are in private preview and are enabled per organization. This is separate from CPU-only sandboxes, which are in public preview: an organization that can already run CPU sandboxes still needs GPUs enabled. To request access, contact your account team or email support@wandb.ai. Until GPUs are enabled for your organization, a request that includes a GPU fails with
CWSANDBOX_GPU_NOT_ALLOWED and the message this organization is not entitled to create GPU sandboxes.Before you begin
You need the following:- GPU sandboxes enabled for your organization.
- A credential. Serverless accepts a CoreWeave API access token or a Weights & Biases API key. CKS placement requires a CoreWeave API access token. See Choose a credential.
-
The Python client,
cwsandbox1.14.2 or later. For a W&B API key, install thewandbextra:For a CoreWeave access token, the base package is enough:
How GPU requests work
The same rules apply in both placement modes:- A GPU request reserves GPUs and nothing else. It doesn’t add CPU or memory to the sandbox. Set those explicitly, sized for the work you’ll run alongside the GPU. If you leave them out, the sandbox gets the
defaultCpuanddefaultMemoryvalues from the policy that governs the runner. - Sandboxes get whole GPUs. GPUs aren’t shared, partitioned, or time-sliced between sandboxes.
- A sandbox runs on a single Node. The largest sandbox is one full Node, and how many GPUs that is depends on the GPU type. On a Node with 8 GPUs, a sandbox can request anywhere from 1 GPU up to 8. Requests for several GPUs need that many free GPUs, plus the CPU and memory you asked for, on one Node at the same time.
- The GPU type is a filter, not a menu. The optional
typekey must match exactly, including case, one of the GPU types the runner advertises. Omit it to accept any GPU the runner has.
Run a GPU sandbox on serverless capacity
Serverless placement needs no runner and no policy of your own. CoreWeave owns the policy and the hardware.Available GPUs
Serverless capacity runs one GPU model, the NVIDIA RTX PRO 6000 Blackwell Server Edition.
Two instance types carry it: High Memory and Standard Memory. They differ in host RAM, not in the GPU, and both present the same GPU type to a sandbox, so which one a sandbox lands on isn’t something you select.
Leave the
type key out of the GPU request so the platform assigns whichever GPU type the serverless pool runs. The field is still accepted here, but it filters rather than selects: a type the pool doesn’t have matches no runner and fails with CWSANDBOX_RUNNER_UNAVAILABLE, which reads like a capacity error rather than a configuration error.
Set CPU and memory limits equal to requests. The flat resources form in the following example does that for you, and a runner can be configured to reject a sandbox whose limits exceed its requests rather than trim them.
Disk is requested separately from CPU, memory, and GPU rather than alongside them: ResourceOptions has no disk field. The container’s root filesystem is Node-local ephemeral storage that the sandbox doesn’t reserve a share of, so df inside the sandbox reports the Node’s filesystem rather than a per-sandbox quota. For a dedicated writable path, declare a scratch volume:
medium="memory" for a tmpfs instead: a memory-backed volume must declare a size, and the memory-backed volumes on one container can’t total more than 80% of its memory request.
Leave runtime_class unset too. A GPU request selects the GPU runtime class on its own, and a runtime class you pin is used exactly as given, so pinning the CPU class alongside a GPU request produces a sandbox that can’t reach the GPU.
Create the sandbox
Set your credential as described in Choose a credential, then run the following example. It creates a sandbox with 1 GPU, 2 CPUs, and 8 GiB of memory, then prints the GPU thatnvidia-smi reports.
- Python
- TypeScript
Use The flat
AuthStrategy.WANDB for a W&B API key. For a CoreWeave access token, replace it with AuthStrategy.COREWEAVE_API_KEY, which reads CWSANDBOX_API_KEY.resources dict sets requests and limits to the same values. "gpu": 1 is shorthand for "gpu": {"count": 1}. To request more GPUs, raise the count.The resource_gpu property returns the GPU allocation the platform confirmed, such as {'count': 1}.Run a GPU sandbox on your CKS cluster
On CKS placement, your administrators decide which GPUs sandboxes can use and how many. The runner offers the GPU types present on the cluster’s Nodes, and the policy it carries bounds what a sandbox may request.Prerequisites
Complete the following before you request a GPU on CKS:-
A CKS cluster with GPU Nodes and a runner in the
Readystate. See Deploy sandboxes on your own CKS cluster. -
The
cw-kata-nvidia-gpuruntime class installed on the cluster, and GPU Nodes configured for virtualization. CoreWeave manages both. To have GPU sandbox support enabled on your cluster, contact CoreWeave support or your account team and name the cluster and the NodePool you want it on. Confirm the runtime class is present before you write a policy: -
A policy on that runner that permits GPUs. Set
maxGpuCountunderresources, includecw-kata-nvidia-gpuinallowedRuntimeClasses, and setdefaultGpuRuntimeClasstocw-kata-nvidia-gpuundersecurity. The GPU data science cluster example policy shows all three. For every field, see Configure a sandbox policy. -
The
SANDBOX_USERIAM action and a CoreWeave API access token, set asCWSANDBOX_API_KEY.
Find the GPU types on your runner
Each runner advertises the GPU types its Nodes carry. List them before you choose atype:
type. Matching is case-sensitive, so B200 and b200 aren’t the same type. To filter runners by GPU type instead, pass gpu_type to list_runners(). For more, see Discover runners.
Create the sandbox
The following example places a sandbox on CKS with 2 GPUs of a specific type, 8 CPUs, and 32 GiB of memory. Replace[GPU-TYPE] with one of the types your runner advertises, or drop the type key to accept any GPU on the runner.
runner_ids=["[RUNNER-ID]"]. The confirmed allocation in resource_gpu reports the count only, such as {'count': 2}, even when you requested a type.
The GPU count is capped by the policy’s maxGpuCount and by the number of free GPUs on a single Node. A request above the policy cap fails with CWSANDBOX_RESOURCE_CEILING_EXCEEDED. A type the runner doesn’t offer, or one with a different case, finds no eligible runner and fails with CWSANDBOX_RUNNER_UNAVAILABLE.
Container images
The platform provides the NVIDIA driver and thenvidia-smi tool inside a GPU sandbox, so the default image can already see the GPU. To run CUDA applications, use an image that ships the CUDA runtime and libraries your code needs, such as a pytorch/pytorch or nvidia/cuda image.
Match the image to the GPU. The RTX PRO 6000 Blackwell Server Edition is compute capability 12.0 (sm_120), which needs CUDA 12.8 or later, and PyTorch 2.7 was the first release built for it. An older image still reports the GPU’s name correctly, because that reads device metadata through the driver, then fails at the first kernel launch with CUDA error: no kernel image is available for execution on the device. Check that your framework lists sm_120 rather than trusting the device name:
Common errors
Next steps
- Sandbox configuration covers every
ResourceOptionsfield, QoS classes, and timeouts. - Configure a sandbox policy explains the GPU, runtime class, and resource constraints administrators set on a CKS runner.
- Get started with CoreWeave sandboxes covers CPU-only sandboxes, credentials, and deploying a runner on your own cluster.