Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Detect Apple silicon GPU core count

Similar to this question, I am interested in detecting the exact GPU inside a Mac equipped with Apple silicon.

I am interested in knowing the exact GPU core count.

sysctl -a | grep gpu

or

sysctl -a | grep core

does not seem to provide anything useful.

like image 991
tcapelle Avatar asked Jul 24 '26 00:07

tcapelle


2 Answers

You can use ioreg like this:

 ioreg -l | grep gpu-core-count

You can also look up an object with class that's named something like AGXAcceleratorG13X and see all of its properties, gpu-core-count will also be there.

like image 108
JustSomeGuy Avatar answered Jul 28 '26 01:07

JustSomeGuy


To detect GPU core count on Apple Silicon architecture you can use this command:

system_profiler SPDisplaysDataType
like image 37
Hamid Yusifli Avatar answered Jul 28 '26 00:07

Hamid Yusifli



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!