You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
--accelerator h100 names a GPU model, but a provider offers several machine
types per model, and the machine type — not the GPU — determines the fabric,
the sidecar, the NIC count, and the NCCL environment.
The docs do not say which machine type a recipe targets. A user on a3-highgpu-8g reasonably expects this to work:
aicr recipe --accelerator h100 --service gke --os cos --intent training
It resolves to GPUDirect-TCPXO artifacts that cannot schedule on their nodes. docs/user/cli-reference.md documents --accelerator as "Accelerator/GPU
type: h100, h200, gb200, ..." with no machine-type qualification. The only
place the targeting is stated is docs/integrator/gke-tcpxo-networking.md
("on a3-megagpu-8g nodes") — an integrator page a user picking criteria will
not read.
Scope of this issue
Documentation only. Document the supported machine type per accelerator ×
service, and state plainly what is unsupported.
Minimum targets:
docs/user/cli-reference.md — qualify the --accelerator value list, or
link it to a support matrix.
Add a support matrix. Verified for GKE H100 against Google's GPUDirect
documentation:
Audit whether EKS and AKS have the same shape. Document them, or record
that they were checked and do not.
Terminology note
The docs already use "SKU" to mean the GPU model — cli-reference.md says
"maps the device ID to a SKU, e.g. h100" and "accelerator model/SKU". New
text should say machine type (the provider's own term) so the same word
does not carry two meanings on the same page.
Open questions (design — not resolved by this issue)
Should AICR support multiple machine types per accelerator at all, or stay
single-machine-type-per-recipe and document the boundary?
Fine-grained accelerator values (h100-mega-80gb vs h100) — reuses
the existing axis with no model change, but mixes vendor GPU names with
provider label names, multiplies the enum across every surface that
documents it (the OpenAPI contract, six doc pages, issue templates), and
breaks --accelerator h100 as a working input.
Named profile runtimes, no model change — a user referencing torch-distributed-tcpx has already distinguished the case themselves.
Constraint on option 2:a3-highgpu-8g and a3-highgpu-1g share the label nvidia-h100-80gb but differ on whether GPUDirect exists at all. The
accelerator label therefore cannot express the full ternary split
(TCPXO / TCPX / none), which is a wall the other options do not hit.
Problem
--accelerator h100names a GPU model, but a provider offers several machinetypes per model, and the machine type — not the GPU — determines the fabric,
the sidecar, the NIC count, and the NCCL environment.
The docs do not say which machine type a recipe targets. A user on
a3-highgpu-8greasonably expects this to work:It resolves to GPUDirect-TCPXO artifacts that cannot schedule on their nodes.
docs/user/cli-reference.mddocuments--acceleratoras "Accelerator/GPUtype: h100, h200, gb200, ..." with no machine-type qualification. The only
place the targeting is stated is
docs/integrator/gke-tcpxo-networking.md("on
a3-megagpu-8gnodes") — an integrator page a user picking criteria willnot read.
Scope of this issue
Documentation only. Document the supported machine type per accelerator ×
service, and state plainly what is unsupported.
Minimum targets:
docs/user/cli-reference.md— qualify the--acceleratorvalue list, orlink it to a support matrix.
documentation:
a3-megagpu-8gnvidia-h100-mega-80gba3-highgpu-8gnvidia-h100-80gba3-edgegpu-8gnvidia-h100-80gba3-highgpu-1g/2g/4gnvidia-h100-80gbthat they were checked and do not.
Terminology note
The docs already use "SKU" to mean the GPU model —
cli-reference.mdsays"maps the device ID to a SKU, e.g.
h100" and "accelerator model/SKU". Newtext should say machine type (the provider's own term) so the same word
does not carry two meanings on the same page.
Open questions (design — not resolved by this issue)
single-machine-type-per-recipe and document the boundary?
h100-mega-80gbvsh100) — reusesthe existing axis with no model change, but mixes vendor GPU names with
provider label names, multiplies the enum across every surface that
documents it (the OpenAPI contract, six doc pages, issue templates), and
breaks
--accelerator h100as a working input.provider-specific vocabulary in a provider-neutral model) or fabric /
transport class (
tcpxo,tcpx,efa,ib,none— provider-neutral,and the axis nccl-all-reduce-bw training gate is a fixed absolute fabric-specific busbw value applied to SKU-agnostic recipes → false-fails EKS/H100 small SKUs #1256 concluded is the one that matters).
torch-distributed-tcpxhas already distinguished the case themselves.Constraint on option 2:
a3-highgpu-8ganda3-highgpu-1gshare the labelnvidia-h100-80gbbut differ on whether GPUDirect exists at all. Theaccelerator label therefore cannot express the full ternary split
(TCPXO / TCPX / none), which is a wall the other options do not hit.
Out of scope
RequiredGPUNICNetworks = 8floor conflict — GKE TCPX: SKU-agnostic H100 recipes select TCPXO artifacts they cannot use #2290 owns that.Related