Discussion Apple Silicon SoC thread

Page 251 - Seeking answers? Join the AnandTech community: where nearly half-a-million members share solutions and discuss the latest tech.

Eug

Lifer
Mar 11, 2000
23,587
1,001
126
M1
5 nm
Unified memory architecture - LP-DDR4
16 billion transistors

8-core CPU

4 high-performance cores
192 KB instruction cache
128 KB data cache
Shared 12 MB L2 cache

4 high-efficiency cores
128 KB instruction cache
64 KB data cache
Shared 4 MB L2 cache
(Apple claims the 4 high-effiency cores alone perform like a dual-core Intel MacBook Air)

8-core iGPU (but there is a 7-core variant, likely with one inactive core)
128 execution units
Up to 24576 concurrent threads
2.6 Teraflops
82 Gigatexels/s
41 gigapixels/s

16-core neural engine
Secure Enclave
USB 4

Products:
$999 ($899 edu) 13" MacBook Air (fanless) - 18 hour video playback battery life
$699 Mac mini (with fan)
$1299 ($1199 edu) 13" MacBook Pro (with fan) - 20 hour video playback battery life

Memory options 8 GB and 16 GB. No 32 GB option (unless you go Intel).

It should be noted that the M1 chip in these three Macs is the same (aside from GPU core number). Basically, Apple is taking the same approach which these chips as they do the iPhones and iPads. Just one SKU (excluding the X variants), which is the same across all iDevices (aside from maybe slight clock speed differences occasionally).

EDIT:



M1 Pro 8-core CPU (6+2), 14-core GPU
M1 Pro 10-core CPU (8+2), 14-core GPU
M1 Pro 10-core CPU (8+2), 16-core GPU
M1 Max 10-core CPU (8+2), 24-core GPU
M1 Max 10-core CPU (8+2), 32-core GPU

M1 Pro and M1 Max discussion here:


M1 Ultra discussion here:


M2 discussion here:


Second Generation 5 nm
Unified memory architecture - LPDDR5, up to 24 GB and 100 GB/s
20 billion transistors

8-core CPU

4 high-performance cores
192 KB instruction cache
128 KB data cache
Shared 16 MB L2 cache

4 high-efficiency cores
128 KB instruction cache
64 KB data cache
Shared 4 MB L2 cache

10-core iGPU (but there is an 8-core variant)
3.6 Teraflops

16-core neural engine
Secure Enclave
USB 4

Hardware acceleration for 8K h.264, h.264, ProRes

M3 Family discussion here:

 
Last edited:

soresu

Platinum Member
Dec 19, 2014
2,667
1,865
136
ya they are newish as in there are a few notable changes, but bulk of the architecture is still the same. I hope we see a new architecture from ground up with A18. Same as how AMD is doing with Zen 5.
They are already sporting a super wide core - I don't think it's going to gain them much by going significantly wider a la Zen 5 at this point.

Beyond a certain width you hit diminishing returns.

Going from 4 -> 6 doesn't net the same gain as 6 -> 8, let alone 8 -> 10 even though you are increasing by the same amount.

Unless they can somehow architect 13-16 wide µArch without explosive power draw and area increase maybe, but that seems like a stretch.

Unless some big breakthrough in CPU design happens I think we will see perf hit a hard wall without a drastic change to the underlying hardware device and materials, perhaps something like antiferromagnetic or photonic logic with topological insulator based metal layers.
 
Reactions: Apokalupt0

soresu

Platinum Member
Dec 19, 2014
2,667
1,865
136
Not always true. Esp. if they manage to enhance the accompanying blocks.

The point was about taking it purely on the point of just throwing silicon at the problem.

The impact of diminishing returns is already starting to be a buzzkill for Apple I imagine.

Given ARM Ltd's best 4 wide CPU core far outperforms Apple's initial 6 wide design that point should be kinda obvious by now to anyone paying attention.

On that note, are the A7xx cores still 4 wide?

Anyone got the spec sheet on this? I seem to remember a Google Docs thing floating around some time ago.

If so I wonder if Chaberton/A730 will continue to be 4 wide.
 

Doug S

Platinum Member
Feb 8, 2020
2,269
3,521
136
Not always true. Esp. if they manage to enhance the accompanying blocks.

Doesn't matter, there are always diminishing returns for widening, because not all code has sufficient parallelism. Doesn't help as much to go from 8 to 10 wide if even under ideal circumstances the code you're running only exceeds 8 instructions that can be issued/retired at once 10 or 20 percent of the time. But maybe when you went from 6 to 8 it was 20 to 30 percent that could benefit.
 
Reactions: Mopetar and Ajay

naukkis

Senior member
Jun 5, 2002
706
578
136
Doesn't matter, there are always diminishing returns for widening, because not all code has sufficient parallelism. Doesn't help as much to go from 8 to 10 wide if even under ideal circumstances the code you're running only exceeds 8 instructions that can be issued/retired at once 10 or 20 percent of the time. But maybe when you went from 6 to 8 it was 20 to 30 percent that could benefit.

There's something that might give good results from very wide cores that aren't yet utilized - like hardware loop unrolling. Complex to do - but when done it makes possible to run every iteration of loop in it's own hardware making well use of very wide execution hardware. Though proper ISA support would make implementing that kind of parallelism much easier.
 
Reactions: soresu
Jul 27, 2020
16,340
10,352
106
There's something that might give good results from very wide cores that aren't yet utilized - like hardware loop unrolling. Complex to do - but when done it makes possible to run every iteration of loop in it's own hardware making well use of very wide execution hardware. Though proper ISA support would make implementing that kind of parallelism much easier.
Sounds intriguing. On that note, why don't compilers automatically write SIMD code for loops where it's "obvious" that the task can be parallelized? Or how about generating executable code with its own virtual machine that analyzes the code as it runs. There will be an overhead for small data inputs but if a large input is given, the VM will "see" that it's taking too long to execute and thus, it pauses the execution of the code, parallelizes the task so the loop runs in parallel as multiple threads and then resumes from where it left off.
 

FlameTail

Platinum Member
Dec 15, 2021
2,356
1,274
106
Doesn't matter, there are always diminishing returns for widening, because not all code has sufficient parallelism. Doesn't help as much to go from 8 to 10 wide if even under ideal circumstances the code you're running only exceeds 8 instructions that can be issued/retired at once 10 or 20 percent of the time. But maybe when you went from 6 to 8 it was 20 to 30 percent that could benefit.
So if making the core wider will only bring diminishing returns, what are they gonna do!?

Are IPC gains dead?
 

Apokalupt0

Junior Member
Feb 14, 2024
10
10
41
The point was about taking it purely on the point of just throwing silicon at the problem.

The impact of diminishing returns is already starting to be a buzzkill for Apple I imagine.

Given ARM Ltd's best 4 wide CPU core far outperforms Apple's initial 6 wide design that point should be kinda obvious by now to anyone paying attention.

On that note, are the A7xx cores still 4 wide?

Anyone got the spec sheet on this? I seem to remember a Google Docs thing floating around some time ago.

If so I wonder if Chaberton/A730 will continue to be 4 wide.
The A715 went from 4 wide to 5 wide
 
Reactions: soresu
sale-70-410-exam    | Exam-200-125-pdf    | we-sale-70-410-exam    | hot-sale-70-410-exam    | Latest-exam-700-603-Dumps    | Dumps-98-363-exams-date    | Certs-200-125-date    | Dumps-300-075-exams-date    | hot-sale-book-C8010-726-book    | Hot-Sale-200-310-Exam    | Exam-Description-200-310-dumps?    | hot-sale-book-200-125-book    | Latest-Updated-300-209-Exam    | Dumps-210-260-exams-date    | Download-200-125-Exam-PDF    | Exam-Description-300-101-dumps    | Certs-300-101-date    | Hot-Sale-300-075-Exam    | Latest-exam-200-125-Dumps    | Exam-Description-200-125-dumps    | Latest-Updated-300-075-Exam    | hot-sale-book-210-260-book    | Dumps-200-901-exams-date    | Certs-200-901-date    | Latest-exam-1Z0-062-Dumps    | Hot-Sale-1Z0-062-Exam    | Certs-CSSLP-date    | 100%-Pass-70-383-Exams    | Latest-JN0-360-real-exam-questions    | 100%-Pass-4A0-100-Real-Exam-Questions    | Dumps-300-135-exams-date    | Passed-200-105-Tech-Exams    | Latest-Updated-200-310-Exam    | Download-300-070-Exam-PDF    | Hot-Sale-JN0-360-Exam    | 100%-Pass-JN0-360-Exams    | 100%-Pass-JN0-360-Real-Exam-Questions    | Dumps-JN0-360-exams-date    | Exam-Description-1Z0-876-dumps    | Latest-exam-1Z0-876-Dumps    | Dumps-HPE0-Y53-exams-date    | 2017-Latest-HPE0-Y53-Exam    | 100%-Pass-HPE0-Y53-Real-Exam-Questions    | Pass-4A0-100-Exam    | Latest-4A0-100-Questions    | Dumps-98-365-exams-date    | 2017-Latest-98-365-Exam    | 100%-Pass-VCS-254-Exams    | 2017-Latest-VCS-273-Exam    | Dumps-200-355-exams-date    | 2017-Latest-300-320-Exam    | Pass-300-101-Exam    | 100%-Pass-300-115-Exams    |
http://www.portvapes.co.uk/    | http://www.portvapes.co.uk/    |