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
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,
Copy link
Member

Choose a reason for hiding this comment

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

Was this wrong?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

It's more than M2 Max (13.49), probably FP16? But most of Apple Silicon benchmarks here are FP32 as those are sometimes reported by Apple and more probably are correct.

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
Loading