Diagnosing Buzzing After GPU Swap | Generated by AI

Home 2026.07

Question: After swapping out the RTX 4070 and installing an AMD Instinct MI50, the system now makes an electrical “zizi” (buzzing/sizzling) sound while powered on, and the sound stops as soon as it’s powered off. How do I diagnose and fix this?

Answer:

Treat this as a safety triage first, then a diagnostic isolation problem. “Buzzing that starts at power-on and stops at power-off” has two very different root causes that sound almost identical to a human ear but have very different risk levels:

1. Immediate safety check (do this before anything else)

If nothing is burnt and the pins look clean, it’s very likely coil whine, not arcing — see below.

2. Understand what “coil whine” actually is

Coil whine comes from the inductors in a VRM (voltage regulator module) — either on the motherboard, the GPU, or inside the PSU. When current switches at high frequency through the coil’s copper winding, the winding physically vibrates (magnetostriction) at a frequency that can fall in the audible range (2–20 kHz). This is an electromechanical resonance effect, not a fault per se — but it’s much more common under specific current draw patterns.

Why swapping in the MI50 would suddenly trigger it:

3. Isolate the source (systematic, ~10 minutes)

# Step 1: swap MI50 out, put ANY other GPU (or nothing, use onboard/no display) back in
# Power on, listen. If silent → confirmed GPU or its power delivery is the source.
# If still buzzing → it's the motherboard VRM or PSU, unrelated to the MI50 itself.

# Step 2: with MI50 installed, disconnect one of the two 8-pin cables at a time
# (system won't boot properly, that's fine — you're just listening for the noise
# during the brief power-on before it fails to POST)
# This isolates which specific power rail/cable is resonating.

# Step 3: try a different PCIe power cable/cable route from the PSU
# (different cable = different physical routing = different resonance point)

4. Fixes, in order of how likely they are to work

  1. Re-seat every connector firmly — this alone fixes ~50% of “new noise after a swap” cases, especially if you handled cables during the RTX 4070 removal.
  2. Add airflow across the MI50 — since it’s passive, a case fan or even a clip-on blower directly over the heatsink stabilizes its power draw curve and often kills the whine within minutes of the GPU no longer thermal-cycling.
  3. Try different PCIe cables from the PSU, not just a different port — coil whine is routing- and cable-length-sensitive.
  4. Cap the MI50’s power via ROCm/rocm-smi if it’s a driver-level fluctuation issue:
sudo rocm-smi --setpoweroverdrive 250   # cap to 250W instead of 300W
sudo rocm-smi --setperflevel high        # or 'auto' — test both

Locking the power state instead of letting it dynamically clock can remove the transient switching that causes whine.

  1. If it persists and is loud/annoying but nothing is burnt — it’s cosmetic coil whine, common on used enterprise cards, and not damaging. Many MI50 units bought secondhand exhibit this simply from years of datacenter duty cycling.

5. One more thing worth checking given your workflow

You mentioned disassembling the RTX 4070 and handling the MI50 by hand. If you weren’t grounded (no anti-static wrist strap, no touching a grounded metal chassis first), it’s possible you introduced a small ESD event into the VRM MOSFETs on either card — this can cause exactly this kind of high-pitched buzz as a partially damaged switching MOSFET behaves erratically, distinct from harmless coil whine (which is steady and doesn’t change pitch). If the noise is inconsistent, changes pitch, or gets worse over a few days, that’s your signal to stop using that card and bench-test it in isolation (different PSU, different board) before trusting it under sustained ML workloads.

Given you’re about to hammer this MI50 with actual training runs (16GB HBM2, sustained near-300W loads for hours), I’d resolve this now rather than defer — arcing/ESD damage under sustained heavy load is a much bigger risk than at idle.

References:


Back Donate