Your Mac’s CPU core count is listed in System Report, and a one-line Terminal check confirms physical versus logical cores.
If you’re comparing Macs, sizing hardware for a new app, or trying to figure out why one task flies and another crawls, “cores” shows up soon. The catch is that a Mac can show more than one core number, and each number answers a different question.
This article shows you where macOS lists CPU cores, where it lists GPU cores, and how to read the results so the numbers actually match how your Mac behaves.
What A “Core” Means On A Mac
A core is a processing unit that can run work in parallel with other cores. On a Mac, you’ll bump into three core-related ideas most often: CPU cores, logical cores (threads), and GPU cores. Apple silicon also adds a twist: performance cores and efficiency cores.
CPU Cores Are The General-Use Workhorses
CPU cores handle everyday computing: app code, browser tabs, spreadsheets, compression, and most system tasks. More CPU cores can help when software splits work across them, like video encoding, large code builds, and many batch photo exports.
Still, cores aren’t the whole story. A lower-core chip with higher per-core speed can beat a higher-core chip in tasks that don’t spread out well. That’s why it helps to identify the core count first, then pair it with what you actually do on the machine.
Logical Cores Are What macOS Schedules
Some Intel Macs use Hyper-Threading, which lets one physical core present two logical cores to macOS. In that case, you might see 4 physical cores and 8 logical cores. Apps that list “threads” are often showing logical cores.
Apple silicon also reports logical cores, but the physical-versus-logical split tends to be less dramatic for buying decisions than it was on many Intel models. Still, it matters for some licensing and for a few developer tools.
Performance And Efficiency Cores Change The “Total” Story
On Apple silicon, CPU cores can be split into performance cores and efficiency cores. Performance cores push heavy, sustained tasks. Efficiency cores handle lighter work with lower power use, which helps battery life and keeps the system responsive in the background.
When you see a “10-core CPU,” that can mean a mix like 6 performance cores plus 4 efficiency cores. System Report often shows both the total and the split, so you can tell what you have instead of guessing from a marketing line.
GPU Cores Are A Separate Count
GPU cores drive graphics and many parallel workloads: 3D, video effects, and parts of photo processing. On Apple silicon, the GPU is part of the same chip package, and different Mac configurations can ship with different GPU core counts even when the CPU core count stays the same.
This is a common source of confusion: you can see one “Total Number of Cores” under CPU hardware, and another “Cores” line under graphics. They’re both real. They’re just counting different parts of the machine.
How Many Cores Does My Mac Have? What To Check First
The cleanest place to read core counts in macOS is the system report. It’s built in, it uses Apple’s own labels, and it’s the same screen you’ll reference when comparing machines side by side.
Open System Report In macOS Ventura, Sonoma, And Newer
- Open the Apple menu.
- Go to System Settings > General > About.
- Scroll down and click System Report (System Information).
Open System Information From The Apple Menu
- Press and hold the Option key.
- Open the Apple menu, then choose System Information.
Once System Information opens, click Hardware in the sidebar. The right panel is the Hardware Overview. That’s where you’ll usually see the CPU line called Total Number of Cores.
Read CPU Core Counts In System Report
In the Hardware Overview, look for these fields:
- Total Number of Cores: the CPU core count macOS sees.
- Performance: performance CPU cores on many Apple silicon models.
- Efficiency: efficiency CPU cores on many Apple silicon models.
If your screen shows both a split and a total, use the Hardware Overview’s Total Number of Cores as the headline CPU count. The split is there to add context, not to replace the total.
If you only see the total and not the split, that’s normal on some macOS versions and some models. You can still use the total with confidence.
Find GPU Core Count And Graphics Details
GPU core counts are usually listed under a different section than CPU cores. In System Information, open Graphics/Displays in the sidebar. There you’ll see your graphics hardware and, on many Apple silicon Macs, a “Cores” line for the GPU.
If you only need a quick read of the chip or graphics label, the About screen can also show those fields. Apple’s help guide lists what appears in the About view under About settings.
One detail that trips people up: the GPU section can show a “cores” count that looks larger than your CPU total. That’s not an error. It’s a GPU count, not a CPU count.
Table: Where Each Core Number Lives In macOS
Use this as a map when an app asks for “cores” and you’re not sure which count it wants.
| What You’re Trying To Find | Where To Look | What The Label Usually Says |
|---|---|---|
| CPU core count (main number) | System Information > Hardware | Total Number of Cores |
| Performance CPU cores | System Information > Hardware | Performance |
| Efficiency CPU cores | System Information > Hardware | Efficiency |
| Logical cores (threads) | Terminal (sysctl) | hw.logicalcpu |
| Physical CPU cores | Terminal (sysctl) | hw.physicalcpu |
| GPU core count (Apple silicon) | System Information > Graphics/Displays | Cores (or Total Number of Cores) |
| GPU name | System Information > Graphics/Displays | Chipset Model (varies) |
| Chip name (Apple silicon) or CPU model (Intel) | System Settings > General > About | Chip or Processor |
| Mac model identifier details | System Information > Hardware | Model Identifier |
Confirm Core Counts In Terminal Without Guesswork
System Information is enough for most people. Terminal is handy when you want the physical-versus-logical split, or when you’re connected to a Mac remotely and only have a shell.
CPU Physical And Logical Cores
sysctl -n hw.physicalcpu
sysctl -n hw.logicalcpu
The first line returns physical CPU cores. The second line returns logical cores that macOS can schedule work on. On many Intel Macs with Hyper-Threading, the logical number is double the physical number.
Apple Silicon Performance And Efficiency Cores
sysctl -n hw.perflevel0.physicalcpu
sysctl -n hw.perflevel1.physicalcpu
These often map to performance and efficiency physical cores. On some macOS versions, the names that appear can differ, so treat this as a cross-check. System Information remains the clearest screen for most readers.
How To Interpret The Numbers Without Overthinking It
Core counts are easy to compare and easy to misread. Use the right count for the decision you’re making.
If You’re Sizing A Mac For Daily Work
Use the CPU Total Number of Cores as the baseline, then weigh memory and storage next. Many slowdowns come from memory pressure and swapping to disk, not from a lack of CPU cores.
If your Mac feels sluggish with lots of browser tabs and a few apps open, memory is often the limiter. If your Mac feels slow during a long export that pins the CPU at high usage, cores and sustained performance matter more.
If You’re Buying For Video, 3D, And Effects
GPU cores can matter as much as CPU cores. Many editing and 3D tools lean hard on the GPU for effects, color work, and previews. That’s why two Macs with the same CPU core count can feel different in creative apps if their GPU core counts differ.
When you compare two Apple silicon configurations, check the CPU total and the GPU core count side by side. If the work you do shows a lot of GPU activity during renders or playback, the GPU count deserves real attention.
If A License Or Tool Asks For “Cores”
Some licenses count physical CPU cores. Some count logical cores. Some products use “cores” loosely and really mean “threads.” When the definition isn’t stated, ask the vendor what they count, then provide the two sysctl values so you land on the correct tier.
Why One App Shows A Different Core Number
Apps can report “cores” in several ways: logical CPU cores, performance cores only, or GPU cores from the graphics stack. When two tools disagree, go back to System Information and the sysctl checks. Those two sources match what macOS can actually schedule.
Table: Common Core Readouts And What They Usually Mean
These patterns cause most confusion when you’re comparing Macs or reading spec sheets.
| You See This | What It Points To | How To Verify |
|---|---|---|
| “8-core CPU” on a listing | Total CPU cores (often with a P/E split) | System Information > Hardware |
| “10-core CPU” and “8-core GPU” | Separate CPU and GPU core counts | Hardware and Graphics/Displays in System Information |
| “4 cores, 8 threads” | Physical cores and logical cores | sysctl hw.physicalcpu and hw.logicalcpu |
| GPU shows “Cores: 10” but CPU shows “Total Number of Cores: 8” | GPU cores versus CPU cores | Check the section: Hardware vs Graphics/Displays |
| A virtual machine shows fewer cores | VM is configured with fewer CPU resources | Check VM settings, then compare to sysctl on host |
| A tool shows “performance cores” only | It’s ignoring efficiency cores by design | Compare tool readout to System Information split |
| A benchmark uses fewer threads than expected | Benchmark settings limit threads, or workload won’t scale | Check benchmark settings, then rerun |
When The Core Count Looks Wrong
Most “wrong core count” moments come from mixing CPU and GPU numbers, or mixing physical and logical cores. A few real situations can also change what you see on screen.
Virtualization And Remote Access
If you’re inside Parallels, VMware, UTM, or a hosted Mac, the guest OS can be limited to a set number of cores. The host Mac can have more. Run sysctl on the host macOS side to see the real hardware.
Power Settings And Long Runs
On laptops, Low Power Mode can reduce sustained performance. It usually won’t hide cores in System Information, but it can make long tasks finish slower, which feels like “missing cores.” Plug in, close heavy background apps, and test again if you’re measuring exports or builds.
Mixing CPU Cores With GPU Cores
This is the most common trap. If one screen says “Total Number of Cores: 8” and another says “Cores: 10,” check the section header. Hardware is CPU. Graphics/Displays is GPU. Both can be correct at the same time.
Match Cores To Your Exact Mac Model
If you’re comparing your Mac to a store listing, start with the model and chip name, then match that to the configuration that shipped. Apple silicon models can share the same chip name while offering more than one GPU core option. Intel Macs can vary by CPU bin as well.
In System Settings > General > About, note the chip or processor name and your Mac model. Then open System Information to capture the CPU “Total Number of Cores” and the GPU cores under Graphics/Displays. With those two numbers, you can line up your Mac with the right spec tier and avoid mixing CPU and GPU counts.
Core Count Checklist Before You Buy Software Or Upgrade
- Use System Information > Hardware for CPU cores.
- Use System Information > Graphics/Displays for GPU cores.
- Use sysctl hw.physicalcpu and sysctl hw.logicalcpu when a license mentions “physical” or “threads.”
- Compare cores alongside memory, since many slowdowns come from memory pressure, not CPU shortage.
- Save a screenshot of System Information when you’re shopping for an upgrade or verifying specs.
References & Sources
- Apple.“Get system information about your Mac.”Shows how to open System Report (System Information) and view installed hardware details.
- Apple.“View About settings on Mac.”Lists the fields shown in the About view, including chip or processor and graphics details.
