Skip to content

Commit

Permalink
πŸ§‘β€πŸ’» Update Apple Silicon hardware, add M4 series (#1044)
Browse files Browse the repository at this point in the history
Fixed:
- M2 Pro ~6.8 (FP32, 19 cores)
- M3 4.1 (FP32, 10 cores)
- M3 Pro 6.39-7.4 (FP32, 18 cores)

New:
- M4 4.6 (FP32, 10 cores)
- M4 Pro 9.2 (FP32, 20 cores)
- M4 Max 18.4 (FP32, 40 cores)
  • Loading branch information
starkdmi authored Nov 20, 2024
1 parent 0b1ecd5 commit 21158d7
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions packages/tasks/src/hardware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ export const SKUS = {
memory: [8, 16, 24],
},
"Apple M2 Pro": {
tflops: 13.6,
tflops: 6.8,
memory: [16, 24, 32],
},
"Apple M2 Max": {
Expand All @@ -464,17 +464,29 @@ export const SKUS = {
memory: [64, 96, 128, 192],
},
"Apple M3": {
tflops: 2.84,
tflops: 4.1,
memory: [8, 16, 24],
},
"Apple M3 Pro": {
tflops: 14,
tflops: 7.4,
memory: [18, 36],
},
"Apple M3 Max": {
tflops: 14.2,
memory: [36, 48, 64, 96, 128],
},
"Apple M4": {
tflops: 4.6,
memory: [16, 24, 32],
},
"Apple M4 Pro": {
tflops: 9.2,
memory: [24, 48],
},
"Apple M4 Max": {
tflops: 18.4,
memory: [36, 48, 64, 128],
},
},
},
} satisfies Record<string, Record<string, Record<string, HardwareSpec>>>;
Expand Down

0 comments on commit 21158d7

Please sign in to comment.