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
8 changes: 8 additions & 0 deletions packages/tasks/src/hardware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,14 @@ export const SKUS = {
tflops: 5.7,
memory: [16, 24, 32],
},
"Apple M5 Pro": {
tflops: 11.4,
memory: [24, 36, 48, 64],
Copy link

Choose a reason for hiding this comment

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

M5 Pro memory includes nonexistent 36GB configuration

Medium Severity

The memory array for "Apple M5 Pro" includes 36 GB, but Apple's official specs list only 24GB, 48GB, and 64GB configurations for the M5 Pro. The 36GB option exists for the M5 Max (and M4 Max) but not for the Pro tier. This matches the M4 Pro pattern which also has [24, 48, 64] without 36GB. The array here likely needs the 36 removed.

Fix in Cursor Fix in Web

},
"Apple M5 Max": {
tflops: 22.8,
memory: [36, 48, 64, 128],
},
},
},
} satisfies Record<string, Record<string, Record<string, HardwareSpec>>>;
Expand Down
Loading