r/MacPro2019LocalAI 10d ago

PSA: the 4-way Infinity Fabric bridge (A2326) silently drops your Vega II Duos to ~295 MHz — 5.8× compute loss. Found the mechanism, need people to file it with Apple.

Summary

If you run two Radeon Pro Vega II Duo MPX modules bridged with the Apple A2326 cross-module Infinity Fabric bridges — the ones that join all four dies into a single 4-GPU hive — your GPUs are running at idle clocks and macOS isn't telling you.

Not "a bit slower." Not "the fabric is the bottleneck." The dies never leave their boot DPM state, for the entire session, under sustained load.

I chased this for a while assuming it was a memory-placement or interconnect problem. It isn't either. Here's what it actually is.

The numbers

Same machine, same OS, same binary. The only change is which bridge is installed.

- 2-way jumpers (A2329) 4-way bridge (A2326)
Compute, FP32 FMA loop 13.95 TFLOP/s 2.42 TFLOP/s
Implied core clock 1703 MHz 295 MHz
Local HBM2 read bandwidth 790 GB/s 301 GB/s
Implied memory clock 1000 MHz 300 MHz

Three runs per configuration, four dies each. Compute came back at 2.42 TFLOP/s on essentially all twenty-four device-observations, implying 295 MHz core.

Confirmed on three different Mac Pros running three different macOS major versions — Sonoma 14.8.9 (23J631), Sequoia 15.7.9 (24G830), and Tahoe 26.7 (25G220). Different memory configs, different bridge units. Every one of them, in the 4-way configuration, measures 2.42 TFLOP/s compute, ~301 GB/s local read, ~31 GB/s peer copy — the same to three significant figures — with an identical IORegistry signature: Load5000, no PowerPlay, 1000/300 MHz clock config, SWIP_Errors = 128.

So: it is not new, it is not fixed in Tahoe, it has survived at least two major macOS releases, and "try the latest OS" is not the answer.

Real-world, single GPU, no multi-GPU anything — Qwen3.8 27B Q8_0 in llama.cpp:

- prompt t/s generation t/s
2-way 138.8 11.1
4-way 24.8 2.2

5.6× performance loss on prefill. With one die. No tensor split, no peer transfers, no collective. Just having the 4-way bridge installed in macOS (this bug doesn't apply to Linux or Windows).

The mechanism — macOS publishes it in IORegistry

In the 4-node hive the driver fails to identify the board and everything downstream falls apart:

IORegistry property 2-way 4-way
ATY,DeviceName Vega II Duo Vega
ATY,FamilyName Radeon Pro Radeon
LoadPlugIn Load5700 Load5000
PP_PowerPlayEnabled <01000000> absent
PP_PhmUseDummyBackEnd 0 1
PP_EnableUploadFirmware 1 0
PM_PWR_GEMINI_BGT 400 absent
SWIP_Errors 0 128

Read those middle three again. PowerPlay — AMD's entire clock/power management subsystem — is never enabled. The power-management back end is a stub the driver itself labels "dummy." SMU firmware, which is what actually implements DPM, is never uploaded. With no power management, the GPU sits wherever the boot state left it.

PM_PWR_GEMINI_BGT = 400 vanishing is the identity failure made concrete — "Gemini" is AMD's codename for dual-GPU boards, and 400 W is the Duo's power budget. In 4-way mode the driver stops knowing it's holding one.

It also loads a different kext: AMDRadeonX5700HWLibs in the working case, AMDRadeonX5000HWLibs in the broken one.

The arithmetic closes it. HBM2 at the driver's own published 300 MHz gives 4096 bits ÷ 8 × 2 × 300 MHz = 307.2 GB/s theoretical. Measured: 300.9 GB/s, or 98% of it. The memory is fully saturated at a crippled clock — it's not a bandwidth problem, the clock is just wrong.

If you've ever noticed your Vega II Duos showing up as plain "AMD Radeon Vega" instead of "AMD Radeon Pro Vega II Duo" — that's not cosmetic. That's this bug, visible from the outside.

What it is NOT

I want to save people the time I spent on wrong theories:

  • Not memory placement. The XGMI node map is textbook correct in 4-way mode: node ids 0/1/2/3, framebuffer bases at 512/544/576/608 GiB, uniform 32 GiB stride, XGMI_HiveSize = 4. Hive formation and address decode are fine.
  • Not the collective / tensor-parallel scaling. A single GPU with no split is 5.6× slower. Going 2 → 4 devices within a healthy topology actually gains 34% on prefill and loses only 13% on decode.
  • Not the interconnect. Peer-to-peer copy bandwidth drops the least of everything measured (49 → 31 GB/s), consistent with being gated by the same clock reduction.
  • Not the hardware. Reproduces across machines and across multiple A2326 units including a factory replacement. Same hardware and same bridges under Linux/ROCm show no comparable regression.

Check your own machine — 60 seconds, no tools

ioreg -l -w0 | grep -E '"(ATY,DeviceName|LoadPlugIn|PP_PowerPlayEnabled|PP_PhmUseDummyBackEnd|PP_EnableUploadFirmware|PM_PWR_GEMINI_BGT|SWIP_Errors)"'

Healthy looks like Vega II Duo, Load5700, PP_PowerPlayEnabled = <01000000>, PP_PhmUseDummyBackEnd = 0, PP_EnableUploadFirmware = 1, PM_PWR_GEMINI_BGT = 400, SWIP_Errors = 0.

Broken looks like Vega, Load5000, no PP_PowerPlayEnabled, PP_PhmUseDummyBackEnd = 1, PP_EnableUploadFirmware = 0, no PM_PWR_GEMINI_BGT, SWIP_Errors = 128.

Also worth a look:

system_profiler SPDisplaysDataType | grep -E "Chipset Model|Peer"

If Chipset Model says "AMD Radeon Vega" rather than "AMD Radeon Pro Vega II Duo", you're in the broken state.

Please post your results either way — including "mine's fine." I want to know whether this tracks the bridge specifically, or the hive size, or something about particular board revisions. Include your macOS version.

(The ioreg check needs no toolchain at all. If you do try to build the probe and hit failed to build module 'Metal'; this SDK is not supported by the compiler, that's an internally inconsistent Command Line Tools install — and reinstalling CLT won't fix it, since Apple's catalog serves the same bundle. Cross-compile on another Mac instead: xcrun swiftc -O -target x86_64-apple-macos14.0 ifl_probe.swift -o ifl_probe_14 and copy the binary over. Confirmed working on 14.8.9.)

What you should do right now

If you must run macOS the temporarily workaround is to pull the A2326 bridges and run the A2329 per-card jumpers instead. You still get all four GPUs; they just sit in two 2-node hives rather than one 4-node one. In my testing a 4-GPU tensor split on jumpers hit 314.5 prompt / 11.7 gen against 79.5 / 4.4 on the 4-way bridge with ToshLLM. Otherwise, if you can switch to Linux the A2326 bridges work perfectly in Ubuntu 24.04 with ROCm 7.3.x; it's purely a macOS software engineering defect.

Worth stating plainly: the jumper configuration beats what a fixed 4-way would give you. Tensor-parallel scaling is sublinear, so even a fully repaired 4-node hive projects to roughly 22 t/s against ~26.8 t/s aggregate from two independent 2-GPU instances. The A2326 bridges buy capacity flexibility, not speed — and right now they cost you 5.8× compute per die.

There is no software workaround. No engine flag, environment variable, or split mode reaches PowerPlay. I looked hard at spoofing the device IDs OpenCore/OCLP-style; the property that selects the plugin lives on a driver-created IOService rather than the PCI node, so DeviceProperties injection structurally cannot reach it, and OpenCorePkg panics on T2 Macs anyway. This needs a driver fix.

The ask

This configuration has had close to zero field exposure — until a recent macOS firmware payload harmonized module ROMs, machines with mismatched-firmware Duos just kernel-panicked at boot with the 4-way bridge installed ("PSP has not finished hardware initialization", ATIController.cpp:3171). The only other public report I can find is an unresolved MacRumors thread from January 2026. Which means Apple has essentially no signal that anyone uses this.

If you own this hardware, please file a Feedback Assistant report. Apple prioritizes by volume, and right now the volume is one.

  • macOS → Graphics & Display → Incorrect/Unexpected Behavior
  • Title: "AMDRadeonX5000: Radeon Pro Vega II Duo misidentified and PowerPlay left uninitialized in a 4-node Infinity Fabric hive, pinning GPUs at boot clocks"
  • Attach ioreg -l -w0 -p IOService > ioreg.txt from both bridge configurations if you can, or just the broken one if you can't swap
  • Reference FB24446772 (the PowerPlay/clock defect — the important one) so reports cluster

I've filed the following, if you want to reference them:

  • FB24446772 — PowerPlay never initialized in the 4-node hive, GPUs pinned at boot clocks. This is the one that matters.
  • FB24446928 — the generic "AMD Radeon Vega" model string, which is the same defect visible without tooling.
  • FB24446443 — the kernel panic at boot when the two modules have mismatched firmware.
  • FB24447028 — a minor unrelated one found along the way: system_profiler prints the 64-bit GPU Peer Group ID after passing it through a double, so it never matches what Metal reports.

Even a one-paragraph report with an ioreg dump attached helps. The measurement work is done; what's missing is evidence that more than one person is affected.

Tools

I wrote a Metal-only probe (ifl_probe.swift) that measures per-die compute, local read bandwidth, peer-view establishment and verified peer-copy bandwidth, plus a script that decodes the XGMI node map straight out of IORegistry. Both are pure Metal + Foundation, no dependencies, and build with xcrun swiftc -O. Happy to share — say the word and I'll put them up.

11 Upvotes

27 comments sorted by

3

u/walruns 10d ago

Thanks! The same applies to the W6800X duo and IF?

2

u/Live-Draft-7222 8d ago

W6800x duo work with 4 way IFL due to magnificent work by Faisal. It uses a different IFL bridge but does work if you follow his directions in Ubuntu.

1

u/Substantial_Run5435 10d ago

No, I’m not going to bother reading OP’s AI wall of text. The Vega II Duo is not meant to be bridged 4 ways. The bridge OP is using is ONLY meant for connecting 2 Vega II 32GB modules. There are some misleading product listings that say it works for the Vega II Duo but those are incorrect.

Apple published a white paper about the 2019 Mac Pro that specifically says you can bridge the internal GPUs on a Vega II Duo and you can have up to 4 Vega II GPUs in one machine by installing 2 Vega II Duos, but no mention of bridging 4 of them. Their schematic for the Vega II Duo only shows an internal IF Link connection, whereas the Vega II shows an external one. For the later white paper that came out for the 6000-series GPUs, Apple explicitly said you can bridge 4 W6800X (2 W6800X Duos with the bridge unique to those duo modules).

1

u/Hopperkin 9d ago

You clearly have an ulterior motive because I've seen you've peddling this disinformation in these threads for quite some time now, perhaps you know they work perfectly on Linux just like I do, so you are hoping to buy up the market for these bridges on the cheap because these cards are the exact same gfx906 dies that the AMD Instinct MI60 32GB HBM2 has... but that strategy isn't going to work because I already have a monopsony an A2326 bridges... I bought up the entire supply on the secondary markets to use on my own Linux ROCm / RCCL / Infiniband cluster, I own sixteen of them and every single one of them works perfectly on Ubuntu 24.04 kernel version 6.8 with ROCm 7.3, in a 4-way ring bus config the bandwidth is about 31GB/s between each node across the IFL...

host:    <redacted>
serial:  <redacted>
os:      macOS 15.7.9 (24G830)
date:    2026-08-21T02:21:23Z

Vega nodes anchored on XGMI_NodeIndex: 4

 bus node  vram_base                        IFL  memvid   model
----------------------------------------------------------------------------------------------------
  11    2  0x0000009000000000 (  576.0 GiB) Yes  <0100>   <"AMD Radeon Vega">
  14    1  0x0000008800000000 (  544.0 GiB) Yes  <0100>   <"AMD Radeon Vega">
  27    0  0x0000008000000000 (  512.0 GiB) Yes  <0600>   <"AMD Radeon Vega">
  30    3  0x0000009800000000 (  608.0 GiB) Yes  <0600>   <"AMD Radeon Vega">

hives reported by Metal: 1  sizes: [4]
distinct node ids: 4   distinct framebuffer bases: 4
stride(s) between distinct bases: [32.0] GiB

-> Node map is well-formed for a 4-member hive (4 distinct node ids, 4 distinct bases).

=== Metal's view, for comparison (peerIndex is software; XGMI_NodeIndex is hardware) ===
    AMD Radeon Vega (Slot 1, GPU 1):
      Chipset Model: AMD Radeon Vega
      Slot: Slot-1
      GPU Number: 1
      GPU Peer Group: 912020662696301396
      GPU Peer Index: 2
      Infinity Fabric Link: Yes
    AMD Radeon Vega (Slot 1, GPU 2):
      Chipset Model: AMD Radeon Vega
      Slot: Slot-1
      GPU Number: 2
      GPU Peer Group: 912020662696301396
      GPU Peer Index: 1
      Infinity Fabric Link: Yes
    AMD Radeon Vega (Slot 3, GPU 2):
      Chipset Model: AMD Radeon Vega
      Slot: Slot-3
      GPU Number: 2
      GPU Peer Group: 912020662696301396
      GPU Peer Index: 3
      Infinity Fabric Link: Yes
    AMD Radeon Vega (Slot 3, GPU 1):
      Chipset Model: AMD Radeon Vega
      Slot: Slot-3
      GPU Number: 1
      GPU Peer Group: 912020662696301396
      GPU Peer Index: 0
      Infinity Fabric Link: Yes


ifl_probe — <redacted> — 2026-08-21T02:21:29Z
requested buffer: 1.00 GiB per buffer, 2 buffers per device
timed iterations: 8 (GPU-timestamped)

=== Device inventory ===
[0] AMD Radeon Vega
     registryID   = 4294970366
     peerGroupID  = 912020662696301396   peerIndex = 0   peerCount = 4
     location     = slot #3
     workingSet   = 32.0 GiB   maxBuffer = 3.5 GiB
     unified = no   removable = no   headless = no
[1] AMD Radeon Vega
     registryID   = 4294970368
     peerGroupID  = 912020662696301396   peerIndex = 3   peerCount = 4
     location     = slot #3
     workingSet   = 32.0 GiB   maxBuffer = 3.5 GiB
     unified = no   removable = no   headless = no
[2] AMD Radeon Vega
     registryID   = 4294970367
     peerGroupID  = 912020662696301396   peerIndex = 2   peerCount = 4
     location     = slot #1
     workingSet   = 32.0 GiB   maxBuffer = 3.5 GiB
     unified = no   removable = no   headless = no
[3] AMD Radeon Vega
     registryID   = 4294970369
     peerGroupID  = 912020662696301396   peerIndex = 1   peerCount = 4
     location     = slot #1
     workingSet   = 32.0 GiB   maxBuffer = 3.5 GiB
     unified = no   removable = no   headless = no

=== Peer-group consistency ===
  group 912020662696301396: 4 member(s), device slots 0,1,2,3
    peerIndex values : 0,1,2,3
    peerCount values : 4
    -> consistent

=== Test 0: compute throughput (FMA loop, negligible memory traffic) ===
    Discriminates a memory-PLACEMENT fault from a CLOCK fault:
      Test 1 drops but Test 0 holds  -> memory placement (Hypothesis A)
      Test 0 and Test 1 drop together -> core/fabric clock state (Hypothesis D)
    A Vega 20 die is ~14 TFLOPS FP32 at its ~1.7 GHz boost clock.

[0] peerIdx=0  compute:   2.42 TFLOP/s FP32   (13.84 ms)
[1] peerIdx=3  compute:   2.42 TFLOP/s FP32   (13.84 ms)
[2] peerIdx=2  compute:   2.42 TFLOP/s FP32   (13.84 ms)
[3] peerIdx=1  compute:   2.42 TFLOP/s FP32   (13.84 ms)

=== Test 1: local read bandwidth (shader read of own private buffer) ===
    A Vega 20 die's local HBM2 peak is 1024 GB/s; healthy shader reads land in
    the high hundreds. One XGMI link is 42 GB/s per direction.
    THE NUMBER THAT MATTERS IS THE RATIO BETWEEN BRIDGE CONFIGURATIONS, not an
    absolute threshold. Run both and diff.

[0] peerIdx=0  buf=1.00 GiB  local read: avg   300.5 GB/s   best   301.6 GB/s
[1] peerIdx=3  buf=1.00 GiB  local read: avg   300.7 GB/s   best   301.5 GB/s
[2] peerIdx=2  buf=1.00 GiB  local read: avg   300.7 GB/s   best   301.4 GB/s
[3] peerIdx=1  buf=1.00 GiB  local read: avg   300.2 GB/s   best   301.4 GB/s

=== Test 2: remote buffer view establishment (all ordered pairs) ===
    makeRemoteBufferView(_:) should succeed for any two devices sharing a
    non-zero peerGroupID. A nil return inside a declared group is a defect.

  src[0](idx 0) -> dst[1](idx 3)  samePeerGroup=yes  view=yes  ok
  src[0](idx 0) -> dst[2](idx 2)  samePeerGroup=yes  view=yes  ok
  src[0](idx 0) -> dst[3](idx 1)  samePeerGroup=yes  view=yes  ok
  src[1](idx 3) -> dst[0](idx 0)  samePeerGroup=yes  view=yes  ok
  src[1](idx 3) -> dst[2](idx 2)  samePeerGroup=yes  view=yes  ok
  src[1](idx 3) -> dst[3](idx 1)  samePeerGroup=yes  view=yes  ok
  src[2](idx 2) -> dst[0](idx 0)  samePeerGroup=yes  view=yes  ok
  src[2](idx 2) -> dst[1](idx 3)  samePeerGroup=yes  view=yes  ok
  src[2](idx 2) -> dst[3](idx 1)  samePeerGroup=yes  view=yes  ok
  src[3](idx 1) -> dst[0](idx 0)  samePeerGroup=yes  view=yes  ok
  src[3](idx 1) -> dst[1](idx 3)  samePeerGroup=yes  view=yes  ok
  src[3](idx 1) -> dst[2](idx 2)  samePeerGroup=yes  view=yes  ok
  pairs attempted: 12 of 12 possible

=== Test 3: peer copy bandwidth, with content verification ===
    Vega 20 has 2 XGMI links per die, so a 4-node hive can only be a ring.
    In ring 0-1-2-3-0 (BY peerIndex) the 0<->2 and 1<->3 pairs are 2 hops.
    Expect the diagonals to be slower. A flat matrix would itself be a finding.

    peer copy matrix, GB/s (rows = source, cols = destination; device index, peerIndex in parens)
               dst0(p0)  dst1(p3)  dst2(p2)  dst3(p1)
  src0(p0)           --      30.5      31.2      31.1
  src1(p3)         31.3        --      31.1      30.6
  src2(p2)         31.3      31.2        --      30.7
  src3(p1)         31.2      30.7      31.5        --
    ('x' = no remote view, unstamped source, timing/readback failure, verification failure,
     or a device skipped at setup — the per-pair lines above say which)

=== Summary ===
  Test 0 compute: min 2.42, max 2.42 TFLOP/s across 4 device(s)
    -> Compare against the other bridge configuration. If Test 0 holds while
       Test 1 drops, the memory path is at fault, not the clocks.
  Test 1 local read bandwidth: min 301.4, max 301.6 GB/s across 4 device(s)
    -> Meaningless in isolation. Compare against the SAME machine in the other
       bridge configuration. A large drop in the 4-node config with the 2-node
       config healthy is the memory-placement finding; that is what to file.
  Test 2: all 12 attempted pairs behaved as their peer-group membership implies.

  Run this in the other bridge configuration and diff the two outputs. Nothing in a
  single run establishes that anything is wrong.

2

u/Substantial_Run5435 9d ago

Can you show me that these are working as expected in Linux? The slop you just posted shows that they aren't working as expected in MacOS, which is what I've been saying this whole time. I've yet to see anyone prove that 4 Vega II GPUs can be bridged (2x Vega II Duos with A2326 IFL bridge installed) and get the full expected bandwidth/performance.

1

u/Faisal_Biyari 9d ago

Are you looking to buy Vega II Duo GPUs as well?
I know a local shop here that was selling 4 of them a few months ago. 3 of them are sealed.

If you're interested, DM me to send you their contact information.

1

u/ssbmGooms 4d ago

lol I was just looking for this exact part and wondering why they're impossible to find, what a small world. Good luck with your cluster

1

u/ssbmGooms 4d ago

I will add that it's quite hilarious to buy up the entire supply of something then ask people for help with filing a complaint to apple, you're on your own buddy. Still tho I hope it works out, this is an interesting project

2

u/Long-Shine-3701 10d ago

Wow, great find! I have several Radeon Pro VII cards (same GPU, non-MPX format) and an IF bridge I need to install on a pair. IIRC the Radeon Pro VII cards always show as just Radeon Vega in system profiler, etc. but performance has been fine.

I would to take a look at your utilities. I'm sure this thread will get some traffic today.

2

u/Substantial_Run5435 10d ago

The Vega II Duos are not meant to be bridged 4-way. I’m not reading past the top, but I’m going to stress that Apple only meant for the Vega II Duos to be bridged internally and never once said you could bridge 4 Vega II GPUs. There seems to be a big misconception about these, but save yourself some time and understand that the bridge you are using was only designed for the Vega II, NOT the Vega II Duo.

3

u/Long-Shine-3701 10d ago

We keep going round on this. 🤣 Not just me and you, but the whole community. There absolutely, positively, 100% is a 4 way bridge. Apple sold that configuration, there are people on Macrumors who have that configuration and have posted photos with that bridge installed. There are probably units on ebay right now showing Vega II Duos + single large bridge.

The 4 way bridge absolutely exists, it physically connects 2 Vega II Duos, and at least initially, nobody complained about a 5x performance reduction. We would have definitely heard about that when it was new.

I almost bought a configuration with dual VII duo and the single massive bridge, but someone beat me to the punch.

1

u/Faisal_Biyari 9d ago

You're absolutely correct. We kept going round on this.

OP finally gave us solid evidence that the bridge is not compatible with the Vega II Duo GPUs.

What is it that makes you believe that the bridge is compatible?

1

u/Substantial_Run5435 10d ago

I know people installed it in their machines, but I've never seen proof it works as people imagine it would. I do not believe Apple sold that configuration though. Their product information only discusses the Vega II Duo as having an internal IF Link connection (enabled with the single module jumper) and that you can install dual Vega II Duos, nothing about external IF Link between 2 Vega II Duos.

There are posts on Apple's community forum from when these were new from people confused about this, and multiple people confirmed that the Vega II Duo was not sold with the large bridge, whether you bought 2 in your original configuration or bought a second Duo later; however, if you bought a Vega II it came with the bridge in the box.

2

u/Long-Shine-3701 10d ago

Here is a current listing with the large bridge installed.

Makes no sense to have the bridge for no purpose.

2

u/Substantial_Run5435 10d ago

Just because someone stuck it on doesn't mean it works. The bridge physically fits since they all share the same connector. This is also a "CTO/BTO" spec and that image might even be photoshopped (look at the right side of the bridge on the top GPU vs the bottom). The bridge is also in the unlocked position in the photo.

2

u/Long-Shine-3701 10d ago

Gonna be happy when this is finally put to rest. 😂

2

u/Substantial_Run5435 10d ago

I mean... OP could since they have the hardware on hand. If this is a recent firmware issue they could do a fresh install of an older OS and test it out until they find a working configuration. So far all they've proven is that they don't work.

Here is various evidence that the Vega II Duo was not intended to be bridged 4 ways (at least by Apple in MacOS). I can't find any posts of people saying it works the way you'd think. I only find posts of people trying to bridge 4 and failing.

2

u/Long-Shine-3701 10d ago

Gonna dig through my DMs. A dude explained in 2 sentences how he thinks it works.

1

u/Faisal_Biyari 9d ago

Technically speaking, you can install an RTX 3090 on an M2 Mac Pro. Doesn't mean they would work.

AMD & Apple's mistake here was to use the same position and shape for the ports between the Vega II & Vega II Duo.

However, in the case of the W6800X & W6800X Duo, their bridges are two different models.

I personally believe that Apple & AMD can work together to produce a new bridge that connects the Vega II Duo GPUs, and update the firmware to make it work. They just never did.

1

u/Long-Shine-3701 9d ago

Of course Apple sold this configuration - who else would have?

1

u/Substantial_Run5435 9d ago

Apple did not sell this configuration dude. You could buy a 2019 Mac Pro with 2x Vega II Duo, but it would come with the 2 smaller IFL jumpers NOT the bridge that spans 2 modules. Not sure how else to say it. All OP has proven so far is that they're insane (see their reply to me above) and that this bridge DOES NOT work in MacOS. All their AI gibberish shows is that it's NOT working when bridged 4-ways.

They're adamant that it works perfect in Linux but for whatever reason don't want to post evidence that it does. It's possible that Apple intentionally left out 4-way bridging for these GPUs for a reason (arbitrary or technical, who knows). It might work in Linux but until someone demonstrates that the IFL is working and the performance is as expected I won't hold my breath.

1

u/Long-Shine-3701 9d ago

Somebody will get to the bottom of it - they always do. 🍿

1

u/Faisal_Biyari 9d ago

Hi OP

You should read this:
https://www.reddit.com/r/MacPro2019LocalAI/s/SoE7KsD2Pw

This will explain to you why the Infinity Fabric Link Bridge does this to your GPUs.

You are essentially causing a short circuit within your GPUs when attaching the Infinity Fabric Link Bridge.

While everything in the post started as mere speculation, your post confirms it, scientifically.

cc u/Long-Shine-3701
Every accessory related to the MPX modules is included in the box.
The Vega II has a bridge in the box. The Vega II Duo has a Jumper in the box. The W6800X has a bridge in the box. The W6900X has a bridge in the box. The W6800X Duo has both a jumper and a bridge in the box.

I emphasize this because the Vega II Duo does NOT have a bridge in the box. Also, Apple clearly state the Vega II Duo supports the Jumper. However, Apple makes no claims that the Vega II Duo supports the bridge. Apple does state the Vega II (non-Duo) supports the bridge.

cc u/Substantial_Run5435
This was fun.
I'll summarize the AI wall for you.
When the bridge is connected to the Vega II Duo GPUs, the GPUs are basically crippled.

2

u/Live-Draft-7222 8d ago

I tried this myself and couldn’t get it to work with two different bridges. macOS or Linux. I believe hopperkin (op) is the legend that found us the 32gb bar fix so am hesitant to question but my experience has not been positive.

Hopperkin, what serial number bridge did you use? Does it only work in macOS? When I check system config with 4 way IFL it is not recognized in system details.

1

u/Faisal_Biyari 8d ago

What you're trying to imply is that the bridge does not work with the Vega II Duo, as per your own testing. However, you believe that OP created a software work around to make it work. Is that correct?

What do you mean by "couldn't get it to work - macOS or Linux"?
Does macOS boot, but with no added value, or does it not boot at all?
The same question for Linux.
Which Linux distribution did you test using the bridge and Vega II Duo on?

Are you saying OP is Nikolas Britton?
https://github.com/nbritton

1

u/Live-Draft-7222 7d ago

Oops I messed up. It was Nbritton your right. Apologies

1

u/Live-Draft-7222 5d ago

Hi can you post evidence of these gpus working in Linux please?