Skip to content

Commit 21158d7

Browse files
authored
πŸ§‘β€πŸ’» Update Apple Silicon hardware, add M4 series (#1044)
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)
1 parent 0b1ecd5 commit 21158d7

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

β€Žpackages/tasks/src/hardware.ts

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ export const SKUS = {
452452
memory: [8, 16, 24],
453453
},
454454
"Apple M2 Pro": {
455-
tflops: 13.6,
455+
tflops: 6.8,
456456
memory: [16, 24, 32],
457457
},
458458
"Apple M2 Max": {
@@ -464,17 +464,29 @@ export const SKUS = {
464464
memory: [64, 96, 128, 192],
465465
},
466466
"Apple M3": {
467-
tflops: 2.84,
467+
tflops: 4.1,
468468
memory: [8, 16, 24],
469469
},
470470
"Apple M3 Pro": {
471-
tflops: 14,
471+
tflops: 7.4,
472472
memory: [18, 36],
473473
},
474474
"Apple M3 Max": {
475475
tflops: 14.2,
476476
memory: [36, 48, 64, 96, 128],
477477
},
478+
"Apple M4": {
479+
tflops: 4.6,
480+
memory: [16, 24, 32],
481+
},
482+
"Apple M4 Pro": {
483+
tflops: 9.2,
484+
memory: [24, 48],
485+
},
486+
"Apple M4 Max": {
487+
tflops: 18.4,
488+
memory: [36, 48, 64, 128],
489+
},
478490
},
479491
},
480492
} satisfies Record<string, Record<string, Record<string, HardwareSpec>>>;

0 commit comments

Comments
Β (0)