What GPU Is My Laptop Using? | Find The Exact Graphics Chip

Your laptop’s GPU is shown in system settings, and you can confirm which chip apps use by checking live GPU activity while a game or editor runs.

“What GPU do I have?” sounds simple until you open a menu and see two names, a vague label like “Intel UHD,” or a display driver that doesn’t match the sticker on your palm rest. Laptops can carry an integrated GPU (built into the CPU), a dedicated GPU (a separate NVIDIA/AMD chip), or both. Then there’s switching: one chip handles light tasks to save battery, the other wakes up for games, 3D work, and video effects.

This article walks you through quick checks that take under a minute, then the deeper checks that settle debates like “Is my dGPU even active?” or “Why does my laptop show the wrong VRAM?” By the end, you’ll know the exact GPU model, which one your apps are using, and what to do if the info looks off.

What GPU Is My Laptop Using? Start Here

If you just want the name of your GPU right now, do these in order. Stop as soon as you get a clear model name.

Quick check 1: Look for the GPU name in system info

  • Windows: Open Task Manager → Performance → click GPU. You’ll often see “GPU 0” and “GPU 1,” each with a name.
  • Mac: Apple menu → About This Mac. You’ll see the graphics chip listed, and on some models you may see two chips when switching is available.
  • Linux: Your desktop “About” screen may list a GPU, but it can be incomplete. Use terminal checks later in this article for the exact model.

Quick check 2: Confirm which GPU is active during a real workload

A static spec page tells you what’s installed. Live monitoring tells you what your laptop is using in the moment. Launch something that should use the GPU (a game, Blender, DaVinci Resolve, Photoshop with GPU features on), then watch GPU activity:

  • Windows: Task Manager → Processes → add the GPU and GPU engine columns, then look at the app’s row.
  • Mac: Activity Monitor → Window → GPU History, then look for spikes while the app runs.

Quick check 3: If you see “Microsoft Basic Display Adapter,” treat it as a clue

On Windows, a generic display driver can hide your real GPU name or block proper performance features. If you spot “Microsoft Basic Display Adapter,” you’re seeing a fallback driver, not the tuned driver for your chip. That doesn’t mean your GPU vanished. It means Windows is running a generic path until the right driver is installed.

Which GPU Your Laptop Uses In Windows And macOS

Now let’s get precise. The goal is two answers:

  1. Installed GPU(s): what chips your laptop physically has.
  2. In-use GPU: which chip your app is using right now.

Windows: Get the installed GPU name three ways

Method 1: Task Manager (fast, also shows live usage)

Press Ctrl + Shift + Esc → Performance tab → click GPU. If your laptop has two chips, you’ll often see two entries (GPU 0, GPU 1). Click each and read the name at the top-right area.

What to watch for:

  • Integrated GPU names: Intel UHD/Iris Xe, AMD Radeon Graphics (often paired with a Ryzen CPU).
  • Dedicated GPU names: NVIDIA GeForce RTX/GTX, AMD Radeon RX.
  • Two GPUs listed: common on gaming and creator laptops that switch chips to save battery.

Method 2: Device Manager (the “what’s installed” list)

Open Device Manager → expand Display adapters. You’ll see the GPU devices Windows detects. This list is great for confirming the model name without any apps running. If the list looks generic, that points to a driver issue rather than missing hardware.

If you want a clear, official step-by-step for identifying Intel graphics via Device Manager, Intel’s support instructions match the same Display adapters path Windows uses: How to Identify Your Intel® Graphics in Windows.

Method 3: DirectX Diagnostic Tool (DxDiag) (good when there are multiple adapters)

Press Windows + R, type dxdiag, press Enter. Check the Display tab(s). If your laptop has multiple adapters, DxDiag may show multiple display tabs. Each tab can reveal a different display device and the driver in use.

Microsoft’s explanation of how DxDiag and Device Manager reflect display drivers is useful when you’re seeing a generic adapter name or multiple display devices: Microsoft Basic Display Adapter in Windows.

Windows: Confirm which GPU a specific app is using

This is where most confusion comes from. Your laptop can have an RTX chip installed, yet your browser or a light game may run on the integrated GPU. To see what’s happening per app:

  1. Open Task Manager → Processes tab.
  2. Right-click the header row → select columns → enable GPU and GPU engine.
  3. Run the app you care about.
  4. Find the app in the list and read the GPU engine entry (it often shows something like “GPU 0 – 3D”).

Tip: If the app is minimized, some programs downshift GPU usage. Keep a 3D scene moving or play a video with effects on while you check.

macOS: See installed GPUs and which one is active

Mac laptops can include one GPU or a mix of integrated and dedicated graphics on some Intel-era models. Apple documents how to check which graphics chips are in use using About This Mac: Find out which graphics processor is in use.

For live activity, open Activity Monitor → Window → GPU History. Start a workload (Final Cut render, 3D app, game) and watch the graphs. If your Mac supports switching, you can often spot when the dedicated GPU kicks in by a jump in activity during heavier tasks.

What It Means When You See Two GPUs

Two GPUs usually means:

  • Integrated GPU: sips power, handles desktop, web, video playback, and light creative work.
  • Dedicated GPU: draws more power, handles 3D, heavy effects, AI workloads, and high-refresh gaming.

Many laptops route the display through the integrated chip even when the dedicated GPU is doing the work in the background. That’s normal on designs that aim for battery life. Some laptops also have a MUX switch mode that changes routing for higher performance at the cost of power draw, often toggled in a vendor control app or BIOS.

If you’re trying to settle “Which GPU am I using,” trust live monitoring during the exact task you care about, not the idle spec list.

Common Places To Check GPU Details And What Each One Tells You

The menu you pick changes the answer you get. Use this table to choose the right place based on what you’re trying to confirm.

TABLE #1 (after ~40% of the article)

Where You Check What You Learn When It’s The Best Choice
Windows Task Manager → Performance GPU model name(s), live usage, memory graphs You want a quick ID plus real-time confirmation
Windows Task Manager → Processes (GPU engine column) Which GPU a specific app is using right now You’re troubleshooting a game or editor using the “wrong” GPU
Windows Device Manager → Display adapters Installed GPU devices Windows detects You need the hardware list even when nothing is running
Windows DxDiag (Display tab[s]) Display device details, driver notes, multi-adapter clues You suspect driver issues or multiple display devices
macOS → About This Mac GPU name(s) and which one is active on supported models You want the cleanest built-in answer on a Mac laptop
macOS → Activity Monitor → GPU History Live GPU workload graphs You want proof a task is hitting the GPU
Linux terminal: lspci / lshw Exact detected GPU hardware model strings Your desktop UI is vague or you run multiple GPUs
Vendor control apps (NVIDIA/AMD panels) Per-app GPU preferences, power modes, switching behavior You need to force an app onto the dedicated GPU

Linux Checks That Identify The Exact GPU

Linux desktops differ a lot by distro and desktop shell, so terminal checks are the most consistent. If you’re new to this, don’t worry. You’re just running read-only commands that report hardware names.

Use lspci to list the GPU devices

Open a terminal and run:

lspci | grep -E "VGA|3D|Display"

You’ll typically see one line per GPU-class device. On hybrid laptops you may see two entries.

Use lshw for a cleaner model label

If installed, run:

sudo lshw -C display

This often includes the product name, vendor, driver in use, and whether the device is claimed by the right driver.

Confirm what’s being used during a workload

The “installed GPU” and “GPU in use” can differ on Linux too, depending on drivers and switching. Desktop tools vary by distro, so the simplest pattern is:

  • Check which driver is bound to each GPU (lshw output helps).
  • Run a workload, then watch GPU load using your distro’s monitor tools or vendor utilities if available.

If you’re gaming, Steam’s performance overlay can be a quick sanity check. If you’re doing compute work, the app logs often state which GPU device was selected.

Why The GPU Name Doesn’t Match What You Expected

If your laptop sticker says “RTX” and Windows shows Intel, that can still be normal. Here are the usual reasons, plus what to do next.

Your laptop is using integrated graphics to save power

On battery, many systems stay on the integrated GPU until a heavy app asks for more. Plug in the charger, run the same app again, and check Task Manager’s per-app GPU engine. If the app never switches, set a preference for that app in your GPU control panel or in Windows graphics settings.

The dedicated GPU is present, but the driver isn’t installed

This shows up as “Microsoft Basic Display Adapter,” a missing GPU entry, or a GPU name that looks generic. In that state, your system can still display an image, yet performance and features take a hit. The fix is usually installing the correct manufacturer driver for your GPU and rebooting.

You’re reading VRAM wrong

Integrated GPUs often report “shared” memory because they borrow RAM. Dedicated GPUs have their own VRAM. Some screens show a blended number or show “dedicated” and “shared” in different places. If you’re comparing your laptop to a game’s requirements, focus on the dedicated GPU’s VRAM figure, not the shared pool.

An external display changed the routing

On some laptops, plugging into a specific port routes the display through the dedicated GPU, while another port routes through the integrated GPU. If your results change when you plug in a monitor, that’s a hint about how your laptop’s internal wiring is set up.

You’re in a low-power mode

Power modes can limit GPU boost behavior. If a game feels slow and GPU usage looks low, check the laptop’s power profile and the vendor performance mode. On many gaming laptops, “Silent” modes cap performance hard.

TABLE #2 (after ~60% of the article)

How To Read Your GPU Name And Know What You’ve Got

Once you’ve found a GPU model name, the next question is, “Is this the one I want for my work?” This table helps you interpret what you’re seeing without turning the article into a spec dump.

What You See What It Usually Means Good Fit For
Intel UHD / Iris Xe Integrated graphics (shares system RAM) School, office apps, web, light photo edits, casual games
AMD Radeon Graphics (no RX number) Integrated graphics on many Ryzen laptops Everyday use, 1080p video work, lighter esports titles
NVIDIA GeForce GTX Dedicated GPU from older gaming tiers 1080p gaming on tuned settings, older 3D apps
NVIDIA GeForce RTX Dedicated GPU with modern feature set Gaming, 3D rendering, AI tools, GPU-accelerated effects
AMD Radeon RX Dedicated GPU in AMD’s gaming tiers Gaming and creative apps that scale well on AMD drivers
Apple M-series GPU (M1/M2/M3 family) Integrated GPU inside Apple silicon Creative work on macOS, strong efficiency, quiet laptops
“Microsoft Basic Display Adapter” Generic driver path, not the real tuned driver Short-term display output only; install the right driver

Make A Specific App Use The Right GPU

If you’ve confirmed your laptop has two GPUs and an app keeps using the integrated chip, don’t guess. Force it with a clean, testable routine:

Step 1: Confirm the baseline with a live check

Run the app, then check Task Manager’s GPU engine column (Windows) or GPU History (Mac). Write down what you see before changing settings so you can verify the change worked.

Step 2: Set a per-app preference

On Windows, you can set per-app GPU preferences through system graphics settings or through the GPU vendor panel. After changing the setting, fully quit the app (don’t just close the window) and relaunch it.

Step 3: Re-test the same scene

Use the same game level, the same timeline render, or the same 3D viewport. Then check live GPU activity again. If it didn’t change, the app may be bound to a specific rendering API mode, or your laptop may be in a hybrid routing mode that needs a restart to switch.

GPU Troubleshooting Checklist When Things Still Don’t Add Up

If your laptop reports the wrong GPU, shows no dedicated GPU, or performance doesn’t match the hardware, run this checklist in order. Each step gives you a concrete result you can act on.

  1. Reboot once. GPU switching, driver installs, and vendor services often need a restart.
  2. Check Device Manager → Display adapters. If you see a warning icon, you’re dealing with a driver or device issue.
  3. Check DxDiag display tab(s). Multiple tabs can reveal multiple adapters and driver differences.
  4. Plug in power. Some laptops throttle or refuse to wake the dedicated GPU on low battery.
  5. Run one clear GPU workload. A 3D benchmark, a game menu with animated backgrounds, or a GPU-accelerated export makes activity easier to spot.
  6. Watch live GPU graphs. If usage stays flat, the app may not be using hardware acceleration, or it may be bound to the integrated GPU.

Once you’ve done these checks, you’ll have a clean answer to share with tech support too: the exact GPU model, the driver state, and proof of which GPU your app is using.

A Simple Way To Save Your GPU Info For Later

After you identify your GPU, save the result where you’ll find it later. It makes driver updates, game requirement checks, and resale listings easier.

  • Windows: Take a screenshot of Task Manager → Performance → GPU, and another of Device Manager → Display adapters.
  • Mac: Take a screenshot of About This Mac showing Graphics, plus a quick GPU History snapshot while your main app runs.
  • Linux: Copy the output of your lspci display command into a notes app, along with your distro version.

That’s it. You now have both the installed GPU model and a practical way to confirm what your laptop is using during the work that matters to you.

References & Sources