Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions hub/publishing-guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ You can build your `hub.json` from scratch, or use [this template](#hubjson-temp
| `containerDiskInGb` | Container disk space allocation | Yes | Integer (GB) |
| `cpuFlavor` | CPU configuration | Only if `runsOn` is `"CPU"` | Valid CPU flavor string. For a complete list of available CPU flavors, see [CPU types](/references/cpu-types) |
| `gpuCount` | Number of GPUs | Only if `runsOn` is `"GPU"` | Integer |
| `gpuIds` | GPU pool specification | Only if `runsOn` is `"GPU"` | Comma-separated pool IDs (e.g., `"ADA_24"`) with optional GPU ID negations (e.g., `"-NVIDIA RTX 4090"`). For a list of GPU pools and IDs, see [GPU types](/references/gpu-types#gpu-pools). |
| `gpuIds` | GPU pool specification | Only if `runsOn` is `"GPU"` | Comma-separated pool IDs (e.g., `"ADA_24"`) with optional GPU ID negations (e.g., `"-NVIDIA GeForce RTX 4090"`). For a list of GPU pools and IDs, see [GPU types](/references/gpu-types#gpu-pools). |
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Citation: Fixed GPU ID from "NVIDIA RTX 4090" to "NVIDIA GeForce RTX 4090" based on PR #260 which identified that the incorrect ID causes operations to fail silently with "no instances available".
View source

| `allowedCudaVersions` | Supported CUDA versions | No | Array of version strings |
| `env` | Environment variable definitions | No | Object ([see below](#environment-variables)) |
| `presets` | Default environment variable values | No | Object ([see below](#presets)) |
Expand Down Expand Up @@ -218,7 +218,7 @@ Here’s an example `hub.json` file that you can use as a starting point:
"containerDiskInGb": 20,

"gpuCount": 1,
"gpuIds": "RTX A4000,-NVIDIA RTX 4090",
"gpuIds": "RTX A4000,-NVIDIA GeForce RTX 4090",
"allowedCudaVersions": [
"12.8", "12.7", "12.6", "12.5", "12.4",
"12.3", "12.2", "12.1", "12.0"
Expand Down
Loading