Enabling native LLM inference on the AMD Radeon Pro V340L (DEV_6864) using the llama.cpp WebGPU backend with Radeon Pro Software Enterprise 19.Q2 on Windows 10 and Windows 11.
The card installs with a one-line INF edit. Driver signature enforcement can be re-enabled after installation — the drivers survive reboot in enforced mode. No permanent test mode watermark.
Each V340L die: 3584 shaders, 8 GB HBM2, 483.8 GB/s bandwidth, DirectX 12 Feature Level 12_1, Shader Model 6.4. Two cards = four independent dies.
Native Windows LLM inference is operational on a single die.
Baseline — Qwen3.5-9B-Q3_K_S, single die:
| Test | Result |
|---|---|
| Prompt Processing (pp512) | 20.40 t/s |
| Token Generation (tg128) | 6.70 t/s |
The working path is the llama.cpp WebGPU + Google Dawn backend, which translates to D3D12 natively. The Vulkan backend is not viable: 19.Q2 lacks the Vulkan 1.2 extensions llama.cpp requires.
If your primary display adapter lacks ShaderF16 (e.g. NVIDIA Pascal), a
small patch is required so Dawn selects the V340L rather than the display GPU.
That patch is in ADDENDUM13.md and is upstream as
llama.cpp PR #21744.
The 19.Q2 driver exposes full D3D12 compute capability:
| Feature | Value |
|---|---|
| Feature Level | D3D12 FL 12_1 |
| Shader Model | 6.4 (Wave Intrinsics, integer dot products) |
| DirectCompute | CS 6.4 |
| Resource Binding | Tier 3 |
Shader Model 6.4 on a 2019 enterprise driver on Vega 10 is not widely documented. This is the first public confirmation via DirectX Caps Viewer on the 19.Q2 driver.
The INF edit below invalidates the catalog signature. A WHQL-signed driver is being retargeted to a hardware revision it was not originally submitted against. The underlying silicon is identical — this is a revision number discrepancy, not a driver compatibility issue.
This is materially different from most INF modifications, which permanently alter driver behavior or disable security checks. Here the only change is the PCI revision ID string. Once Windows accepts the driver into the store and binds it to the device, the driver is treated as any other installed driver — signature enforcement can be restored immediately after installation.
bcdedit /store B:\EFI\Microsoft\Boot\BCD /set {current} testsigning on
bcdedit /store B:\EFI\Microsoft\Boot\BCD /set {current} nointegritychecks on
shutdown /r /t 0
B:is the EFI system partition. Adjust the drive letter if yours differs.
Use 19.Q2 specifically. Later driver versions crash at device polling initialization when installed via the REV_05 edit. The cause is a changed hardware polling contract in newer drivers. Fixing that requires a KMDF shim and is deferred. 19.Q2 is the only validated production path.
From AMD's support page (Windows 10 64-bit, listed under the ESXi 6.7 section):
Select: Radeon Pro Software Enterprise 19.Q2 for V340
Direct link (as of April 2026):
https://drivers.amd.com/drivers/firepro/win10-64bit-radeon-pro-software-enterprise-19.q2-for-v340-june18.exe
Extract the package.
The Stadia-production V340L cards report REV_05. The 19.Q2 driver INF
targets REV_03, which was the revision at driver release. Windows treats
a PCI revision mismatch as no compatible driver found.
The display driver INF is at:
Packages\Drivers\Display\WT6A_INF\U0343610.inf
Edit U0343610.inf only:
$path = "path\to\Packages\Drivers\Display\WT6A_INF\U0343610.inf"
(Get-Content $path -Raw) -replace 'DEV_6864&REV_03','DEV_6864&REV_05' |
Set-Content $path -NoNewlineThe hardware reports the following IDs (Device Manager → Details → Hardware Ids):
PCI\VEN_1002&DEV_6864&SUBSYS_0C001002&REV_05
PCI\VEN_1002&DEV_6864&SUBSYS_0C001002
PCI\VEN_1002&DEV_6864&CC_038000
PCI\VEN_1002&DEV_6864&CC_0380
The INF match string after the edit becomes
PCI\VEN_1002&DEV_6864&SUBSYS_0C001002&REV_05, which matches the first
hardware ID exactly.
The dies appear as Video Controller with yellow warning icons under Other devices.
- Right-click → Update driver → Browse my computer → Let me pick from a list → Have Disk
- Browse to
WT6A_INF→ selectU0343610.inf - Select Radeon Pro V340 (not MxGPU) → Next → accept the warning
- Repeat for each die
Each die appears under Display adapters as Radeon Pro V340, Status OK, no Code 43, no Code 10.
bcdedit /store B:\EFI\Microsoft\Boot\BCD /set {current} testsigning off
bcdedit /store B:\EFI\Microsoft\Boot\BCD /set {current} nointegritychecks off
shutdown /r /t 0The drivers remain bound after reboot with enforcement re-enabled.
| Card | AMD Radeon Pro V340L (ex-Google Stadia, SUBSYS_0C001002, REV_05) |
| Host | Lenovo ThinkStation P520 |
| CPU | Intel Xeon W-2145 |
| OS | Windows 10 IoT LTSC |
| Driver | Radeon Pro Software Enterprise 19.Q2 (26.20.11016.1) |
| Cards tested | 2 simultaneously (4 dies, all operational) |
| Coexistence | NVIDIA Quadro P2000 as primary display — no conflict |
- 56 Compute Units / 3584 Shaders
- 8192 MB HBM2 @ 945 MHz (483.8 GB/s)
- 1500 MHz GPU Clock
- OpenCL 2.0, Vulkan, OpenGL 4.6, DirectX 12 (FL 12_1), DirectML
- PCIe x16 Gen3
Number of devices: 4
Name: gfx901
Max compute units: 56
Max clock frequency: 1500Mhz
Global memory size: 8573157376
Available: Yes
Compiler available: Yes
The card presents each die as an independent SR-IOV virtual function on a separate PCI bus via the onboard Switchtec PFX 48xG3 crossbar. Standard intra-process tensor parallelism bottlenecks on PCIe.
Active development targets the DirectPort SDK for multi-die scaling:
- One independent
llama-cliprocess per die, pinned by DXGI LUID D3D12_HEAP_FLAG_SHARED_CROSS_ADAPTERNT Handles for zero-copy activation transferdp12_signal_fence/dp12_queue_waitfor GPU-native cross-die synchronization
Gate 19 (D3D12 CrossNodeSharingTier check) is the immediate next empirical step.
The SR-IOV activation path in BRIEF.md (Sections 7–8) remains valid for:
- Splitting each die into multiple virtual functions (DEV_686C)
- Running multiple isolated VMs per die
- MxGPU time-sliced GPU scheduling
For using each die as a single undivided 8 GB GPU — inference, compute, rendering — the INF edit is sufficient.
The Microsemi Switchtec PFX 48xG3 on the V340L is a transparent PCIe bridge.
Windows' inbox pci.sys handles it automatically. It routes lanes to the two
downstream dies. It does not gate or manage GPU access.
AMD suppressed the Switchtec management endpoint in firmware. There is no host-visible MRPC surface. The switch is a patch panel, not a gatekeeper.
| File | Description |
|---|---|
| ADDENDUM13.md | Day 4 — WebGPU/D3D12 inference, SR-IOV topology, LUID patch, PR #21744 |
| ADDENDUM12.md | Day 3 — Native activation achieved. Full technical record. |
| BRIEF.md | SR-IOV activation research — register values, gate table, GPUIOV sequence |
| SWITCHTEC.md | Switchtec driver and MRPC findings (valid but not required for PF usage) |
| ADDENDUM10.md | Day 1 — Hardware reconnaissance, topology confirmed |
| ADDENDUM11.md | Day 2 — Switchtec driver bind, Code 10 resolved |
| SURVEYDDA_OUTPUT.txt | Raw SurveyDDA output — PCIe topology |
Threads and references on this hardware, for anyone researching the V340L. Listed roughly by relevance to Windows enablement.
INF fix / Windows driver (independent discovery)
- Proxmox Forum — Shared GPU for VDI: Radeon Pro V340 kowmangler, Aug 2025 — independently found the REV_03→REV_05 INF edit for Windows guest driver in a Proxmox/VFIO passthrough context.
Windows vBIOS flash approach (different path, useful reference)
- AMD Community — Help getting modified Radeon Pro V340L to work in Windows 10 cgavaller2, Mar 2025 — cross-flash to Vega 56 vBIOS, SR-IOV findings. Note: The AMD community forum hosting this thread was sunset shortly after.
- Overclockers Forums — Radeon Pro V340L: Looking for BIOS Mod Info Aug 2025 — community attempt to preserve the vBIOS flash knowledge after AMD forum shutdown.
Linux inference
- Level1Techs — Help getting a Radeon V340L working Oct 2025 — ROCm + llama.cpp on Linux, ~2 t/s. Useful baseline for comparing native Windows D3D12 performance.
General V340 / MxGPU discussion
- Level1Techs — AMD Radeon Pro V320/V340 Questions 2022 — SR-IOV and MxGPU viability questions, largely unanswered at the time.
- Level1Techs — Hybrid GPU Architecture: Radeon Pro 9700 + Three Radeon Pro V340s Dec 2025 — multi-card V340 AI inference workload discussion under Linux.
Hardware reference
- ServeTheHome — AMD Radeon Pro V340 Launch Teardown 2018 — physical teardown, PCB photos, Switchtec identification.
MIT


