Overhaul rack system with split FLOPS, VRAM, cooling, interconnect, and multi-vendor SKUs
CI / build-and-push (push) Successful in 29s
CI / build-and-push (push) Successful in 29s
Expand from 10 to 18 rack SKUs across NVIDIA, AMD, and custom ASIC vendors, each with distinct training vs inference FLOPS, VRAM capacity, cooling requirements, and interconnect technology. Adds cooling hierarchy (air/liquid/immersion) that gates rack deployment, VRAM requirements that gate model training by generation, interconnect multipliers for distributed training scaling, and PUE-based energy cost reduction for advanced cooling. Includes save migration from v4 to v5, 6 new research nodes, and UI updates showing split compute stats. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -62,9 +62,14 @@ export function StateInspectionTab() {
|
||||
|
||||
<Section title="Compute">
|
||||
<Stat label="Total FLOPS" value={formatFlops(compute.totalFlops)} />
|
||||
<Stat label="Training FLOPS" value={formatFlops(compute.totalTrainingFlops)} />
|
||||
<Stat label="Inference FLOPS" value={formatFlops(compute.totalInferenceFlops)} />
|
||||
<Stat label="Eff. Training" value={formatFlops(compute.effectiveTrainingFlops)} />
|
||||
<Stat label="Eff. Inference" value={formatFlops(compute.effectiveInferenceFlops)} />
|
||||
<Stat label="VRAM" value={`${formatNumber(compute.totalVramGB)} GB`} />
|
||||
<Stat label="Utilization" value={formatPercent(compute.inferenceUtilization)} />
|
||||
<Stat label="Training" value={formatPercent(compute.trainingAllocation)} />
|
||||
<Stat label="Inference" value={formatPercent(compute.inferenceAllocation)} />
|
||||
<Stat label="Training Alloc" value={formatPercent(compute.trainingAllocation)} />
|
||||
<Stat label="Inference Alloc" value={formatPercent(compute.inferenceAllocation)} />
|
||||
<Stat label="Capacity" value={`${formatNumber(compute.tokensPerSecondCapacity)} tok/s`} />
|
||||
<Stat label="Demand" value={`${formatNumber(compute.tokensPerSecondDemand)} tok/s`} />
|
||||
</Section>
|
||||
@@ -85,6 +90,9 @@ export function StateInspectionTab() {
|
||||
<Stat label="Racks Failed" value={totalFailedRacks} />
|
||||
<Stat label="In Pipeline" value={pipelineRacks} />
|
||||
<Stat label="Total FLOPS" value={formatFlops(infrastructure.totalFlops)} />
|
||||
<Stat label="Training FLOPS" value={formatFlops(infrastructure.totalTrainingFlops)} />
|
||||
<Stat label="Inference FLOPS" value={formatFlops(infrastructure.totalInferenceFlops)} />
|
||||
<Stat label="Total VRAM" value={`${formatNumber(infrastructure.totalVramGB)} GB`} />
|
||||
</Section>
|
||||
|
||||
<Section title="Reputation">
|
||||
|
||||
Reference in New Issue
Block a user