Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/adding-entities.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Present what you inferred and ask about anything not visible in artifacts:
4. What are the **cost rates** in $/GPU/hr? (hyperscaler, neocloud, 3-year rental)
5. Which **framework variants** will run on it? (e.g. `sglang`, `trt`, `dynamo-trt`, `vllm`, with/without `mtp`)
6. Where should it **sort** relative to existing GPUs in legends?
7. Are there any **new artifact suffixes** for this GPU beyond the existing ones (`-trt`, `-nv`, `-amds`, `-amd`, `-nvd`, `-nvs`, `-disagg`, `-multinode-slurm`, `-dgxc`, `-nb`)?
7. Are there any **new artifact suffixes** for this GPU beyond the existing ones (`-trt`, `-nv`, `-amds`, `-amd`, `-nvd`, `-nvs`, `-disagg`, `-multinode-slurm`, `-dgxc-slurm`, `-dgxc`, `-nb`)?
8. Do you have the **full hardware specs** for the GPU Specs tab? (memory GB, memory bandwidth TB/s, FP4/FP8/BF16 TFLOPS, interconnect tech, scale-up bandwidth, NIC model, scale-out topology)

### Then apply
Expand Down
6 changes: 6 additions & 0 deletions packages/db/src/etl/normalizers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,12 @@ describe('hwToGpuKey', () => {
expect(hwToGpuKey('gb200-dgxc')).toBe('gb200');
});

it('strips -dgxc-slurm suffix', () => {
expect(hwToGpuKey('b200-dgxc-slurm')).toBe('b200');
expect(hwToGpuKey('h200-dgxc-slurm')).toBe('h200');
expect(hwToGpuKey('h100-dgxc-slurm')).toBe('h100');
});

it('strips -nb suffix', () => {
expect(hwToGpuKey('b300-nb')).toBe('b300');
});
Expand Down
1 change: 1 addition & 0 deletions packages/db/src/etl/normalizers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export function hwToGpuKey(hw: string): string | null {
.replace(/-amds$/, '')
.replace(/-amd$/, '')
.replace(/-nvd$/, '')
.replace(/-dgxc-slurm$/, '')
.replace(/-dgxc$/, '')
.replace(/-nb$/, '')
.replace(/-nv$/, '');
Expand Down