4

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.

tcapelle
  • 442
  • 3
  • 12

2 Answers2

2

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.

JustSomeGuy
  • 3,677
  • 1
  • 23
  • 31
1

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

system_profiler SPDisplaysDataType
Hamid Yusifli
  • 9,688
  • 2
  • 24
  • 48