Skip to content

Commit a0287be

Browse files
fix(sfcompute): report H100 memory as 80 GiB (#140)
* fix(sfcompute): report H100 memory as 80 GiB * test(sfcompute): remove GPU memory regression test --------- Co-authored-by: Mason Wheeler <masewheeler@outlook.com>
1 parent 602b644 commit a0287be

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

v1/providers/sfcomputev2/instancetype.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ var h100InstanceTypeMetadata = func() sfcInstanceTypeMetadata {
4444
m := sfcInstanceTypeMetadata{
4545
diskBytes: v1.NewBytes(1500, v1.Gigabyte),
4646
memoryBytes: v1.NewBytes(960, v1.Gigabyte),
47-
gpuVRAM: v1.NewBytes(80, v1.Gigabyte),
47+
gpuVRAM: v1.NewBytes(80, v1.Gibibyte),
4848
vcpu: sfcVCPU,
4949
gpuCount: sfcGPUCount,
5050
gpuManufacturer: v1.ManufacturerNVIDIA,

0 commit comments

Comments
 (0)