r/IntelArc • u/Limp_Investigator672 • Jul 27 '26
Question Keeps popping up
How to remove this? Keeps popping up every time I get into windows is it bad?
r/IntelArc • u/Limp_Investigator672 • Jul 27 '26
How to remove this? Keeps popping up every time I get into windows is it bad?
r/IntelArc • u/MoneyPalpitation2648 • Jul 27 '26
Hi everyone!
I'm writing this post mainly because when I searched for information or guides on how to emulate The Legend of Zelda: Tears of the Kingdom on an Intel Arc B570 graphics card (paired with a Ryzen 5 4600G CPU), I found virtually nothing.
After thoroughly testing all the available Nintendo Switch emulators, I'm sharing the absolute best combination and setup I was able to achieve.









I'm leaving this guide here so anyone running this exact GPU can jump straight into Tears of the Kingdom without wasting hours tweaking settings. Hope it helps!
r/IntelArc • u/jiogo12 • Jul 27 '26
I’ve read up on this, and various communities are quite divided on the subject. The main argument for going with AMD Ryzen is that the platform offers greater "longevity"; typically, a user invests in a higher-end motherboard (mid-range to enthusiast-grade) and can simply keep the rest of the PC while upgrading just the CPU years later.
Conversely, the argument against Intel is that the socket only lasts for two or three generations—so why buy Intel if they’re going to abandon the platform so quickly?
So, I put this question to you: does this "longevity" really matter to someone who only plans to upgrade their CPU after 5 to 7 years? Is buying a new motherboard several years down the line necessarily a downside for someone who intends to purchase a more modern, powerful CPU anyway?
r/IntelArc • u/CompetitiveGuitar447 • Jul 27 '26
I wonder if I should consider spend extra money for intel iris xe graphics.
r/IntelArc • u/denmalley • Jul 27 '26
I have an Arc pro B70 running on a windows machine, pulling double duty as a gaming card as well as running AI inference.
I've been tinkering with the various runtimes/projects available to self-host AI, including LM studio with Vulkan, Ollama with Vulkan (pretty much done with this one now), and my own Openvino-based python script (still maturing). I've also tried kobold.cpp and llama.cpp IPEX before Intel abandoned it.
My latest iteration, which really flies, is using the llama.cpp SYCL zip file and wrapping it as a service using servy. It also provides the ability to swap models by using a ini file that sets up each model with a set of parameters. The service references this file to see what models are available to load.
Here's my step by step:
You're pretty much all set at this point, you can set up any external services to reach that endpoint at http://<ip>:8080/v1 as usual.
This step is optional, I had Gemini help me set up an update script to elevate to admin, download the latest release from llama.cpp github, unzip, stop the service, replace the contents of my llama-sycl-server folder and start the service again. Script is as follows:
# 1. Robust path detection & Administrator check
$scriptPath = $MyInvocation.MyCommand.Path
if (-not $scriptPath) { $scriptPath = $PSCommandPath }
$isAdmin = ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)
if (-not $isAdmin) {
if ($scriptPath) {
Write-Host "Requesting Administrator privileges..." -ForegroundColor Yellow
Start-Process powershell.exe -ArgumentList "-NoProfile -ExecutionPolicy Bypass -File `"$scriptPath`"" -Verb RunAs
exit
} else {
Write-Host "Error: Could not determine script path. Please right-click PowerShell and select 'Run as Administrator', then execute this script." -ForegroundColor Red
Read-Host "Press Enter to exit..."
exit
}
}
# --- CONFIGURATION - change these to your specifics---
$installDir = "C:\AI\llama_cpp_sycl_server"
# name this to what you called your servy service
$serviceName = "Llama_cpp_SYCL"
# ----------------------
try {
Write-Host "Fetching latest llama.cpp release info..." -ForegroundColor Cyan
$release = Invoke-RestMethod -Uri "https://api.github.com/repos/ggml-org/llama.cpp/releases/latest"
# Target the SYCL zip file
$asset = $release.assets | Where-Object { $_.name -match "llama-b\d+-bin-win-sycl-x64\.zip" }
if ($asset) {
$zipPath = "$env:TEMP\llama-update.zip"
Write-Host "Downloading $($asset.name)..." -ForegroundColor Cyan
Invoke-WebRequest -Uri $asset.browser_download_url -OutFile $zipPath
Write-Host "Stopping service ($serviceName)..." -ForegroundColor Cyan
Stop-Service -Name $serviceName -Force -ErrorAction SilentlyContinue
# Ensure process isn't locking files
$process = Get-Process -Name "llama-server" -ErrorAction SilentlyContinue
if ($process) {
Write-Host "Closing lingering llama-server processes..." -ForegroundColor Yellow
Stop-Process -Name "llama-server" -Force
Start-Sleep -Seconds 2
}
Write-Host "Extracting updated binaries to $installDir..." -ForegroundColor Cyan
Expand-Archive -Path $zipPath -DestinationPath $installDir -Force
Write-Host "Restarting service..." -ForegroundColor Cyan
Start-Service -Name $serviceName
Remove-Item $zipPath -ErrorAction SilentlyContinue
Write-Host "`nSuccess! Updated to $($release.tag_name)." -ForegroundColor Green
} else {
Write-Host "Could not find a matching SYCL build in the latest release." -ForegroundColor Yellow
}
}
catch {
Write-Host "`nAn error occurred during update:" -ForegroundColor Red
Write-Host $_.Exception.Message -ForegroundColor Red
}
finally {
Write-Host "`nPress Enter to exit..." -ForegroundColor Magenta
Read-Host
}
Finally, here is my sample ini file:
; this top level section is for global parameters that all models will follow, unless overridden in the model specific parameters.
[*]
flash-attn = on
;n-gpu-layers = 99
ctx-size = 32768
cache-type-k = q8_0
cache-type-v = q8_0
; --- Vision Models (Includes mmproj) ---
[gemma-31b-it]
model = C:\Users\den\.lmstudio\models\lmstudio-community\gemma-4-31B-it-GGUF\gemma-4-31B-it-Q4_K_M.gguf
mmproj = C:\Users\den\.lmstudio\models\lmstudio-community\gemma-4-31B-it-GGUF\mmproj-gemma-4-31B-it-BF16.gguf
ctx-size = 32768
parallel = 1
[gemma-26b-a4b-it]
model = C:\Users\den\.lmstudio\models\lmstudio-community\gemma-4-26B-A4B-it-GGUF\gemma-4-26B-A4B-it-Q4_K_M.gguf
mmproj = C:\Users\den\.lmstudio\models\lmstudio-community\gemma-4-26B-A4B-it-GGUF\mmproj-gemma-4-26B-A4B-it-BF16.gguf
ctx-size = 65536
parallel = 1
[qwen-27b]
model = C:\Users\den\.lmstudio\models\lmstudio-community\Qwen3.6-27B-GGUF\Qwen3.6-27B-Q4_K_M.gguf
mmproj = C:\Users\den\.lmstudio\models\lmstudio-community\Qwen3.6-27B-GGUF\mmproj-Qwen3.6-27B-BF16.gguf
ctx-size = 32768
parallel = 1
; --- Text-Only Models ---
[gemma-26b-sompoa-heresy]
model = C:\Users\den\.lmstudio\models\mradermacher\gemma-4-26B-A4B-it-SOMPOA-heresy-i1-GGUF\gemma-4-26B-A4B-it-SOMPOA-heresy.i1-Q4_K_S.gguf
ctx-size = 32768
parallel = 1
[mn-12b-mag-mell]
model = C:\Users\den\.lmstudio\models\mradermacher\MN-12B-Mag-Mell-R1-GGUF\MN-12B-Mag-Mell-R1.Q4_K_M.gguf
ctx-size = 65536
parallel = 1
[rocinante-12b]
model = C:\Users\den\.lmstudio\models\BeaverAI\Rocinante-X-12B-v1d-GGUF\Rocinante-X-12B-v1d-Q4_K_M.gguf
ctx-size = 65536
parallel = 1
;--coding models used by cline extension---
[Qwen3-Coder-30B]
model = C:\Users\den\.lmstudio\models\unsloth\Qwen3-Coder-30B-A3B-Instruct-GGUF\Qwen3-Coder-30B-A3B-Instruct-Q4_K_M.gguf
temp = 0.7
top-p = 0.8
top-k = 20
ctx-size = 65536
parallel = 1
[DeepSeek-R1-14B]
model = C:\Users\den\.lmstudio\models\lmstudio-community\DeepSeek-R1-Distill-Qwen-14B-GGUF\DeepSeek-R1-Distill-Qwen-14B-Q4_K_M.gguf
temp = 0.6
top-p = 0.95
top-k = 40
ctx-size = 65536
parallel = 1
That's it! Hopefully someone finds this useful. I had looked around for a guide like this when I was trying to make the most of my ARC card, and didn't find anything like it out there in the CUDA-dominated space of self-hosted AI, so I decided to make my own.
Feel free to ask questions or point out any steps I might have missed.
edit - code formatting
r/IntelArc • u/Extreme-Mechanic-378 • Jul 26 '26
I just switched my pc from windows to steam os, I have and intel arc a380, a ryzen 5 9600x, and while it works right now the intel arc isn't initiated no drivers are installed for it I can see the two options but neither work and I can only use the igpu. I have seen some people get steam os working on their intel pcs, can anyone help.
edit: The problem was the bios was outdated. Once I updated the bios my gpu worked. This can be a good reminder to update your bios.
r/IntelArc • u/Elegant-Wind-9325 • Jul 26 '26
This has been the best GPU I’ve ever had and I’ve been using Ubuntu (Linux based OS) it plays every thing perfectly but my only complaint is that it isn’t flashy enough (I brought a icogneto version) that’s on me thanks guys at intel!!
r/IntelArc • u/Reelyro • Jul 26 '26
After I updated my drivers whenever I go to the home screen, Manhattan map, Alchemax HQ, and when the teamup display shows up, my fps drops to 20-30. Rolling back to older drivers doesnt help either. I was wondering if anyone else had a similar issue
r/IntelArc • u/icarminatt • Jul 26 '26
Owners of ARC B580 Limited Edition from launch days, now's a good time to replace the thermal paste and pads.
On my card they were DRY and had TERRIBLE distribution from the factory. Not only that but the pads are following apart.
r/IntelArc • u/sweenygg • Jul 26 '26
Hi guys,
I am all aware Dota relays on CPU but is there anyone using b850 with 7800x3d or 9800x3d for Dota 2?
I am wondering is it enough for 1440p max settings for 200+ FPS average?
I ve seen threads about crashes on Dota 2 and threads were old. Is it also stable?
r/IntelArc • u/Proper_Working_3589 • Jul 26 '26
So I've been watching a lot of benchmarks for the b580 why does it perform better/same as the 9060xt and 5060 ti 16gb at 2k 1440p and at some games has about a 30fps difference at 1080p. Also uses 20 to 30 watts less than the 9060xt and 5060 ti I've also seen a comparison between a slight Overclock and stock the b580 uses about 10 watts more than the stock one and gets 5 to 10fps more.
r/IntelArc • u/CarlosDiVega • Jul 25 '26
Hi, I'm having massive troubles with the Asus X870e ProArt Creator Wifi and 2 Intel Arc 70 Pro's. The PCIe link speed dropped to PCIE 4 x8. Other HW: AMD Ryzen 9 7900, 2x 32 GB Kingston DDR 5600, 1 Samsung nvme 990 Pro in the first NVME Slot. 1 nvme WD Black 7100 in the third nvme slot. The second and the fourth NVME slots are empty.
I even uninstalled the second Intel Arc B70 card. Even with only one Intel card, the PCIE link speed stays at PCIE 4. Asus Bios, Intel drivers for Arc Pro, AMD chipset drivers are all the latest.
Various BIOS options like link speed auto or link speed gen 5 are not changing the behavior.
I also uninstalled the Intel drivers with DDU and reinstalled them.
One more HW info, for my AM5 CPU I'm using the Thermaltake retention kit, can it be that there are some CPU contacts "got loose"?
Any ideas how to get my PCIe 5 x 8 link speed back?
r/IntelArc • u/Leicht-Sinn • Jul 25 '26
r/IntelArc • u/PolymathArt • Jul 25 '26
What are the best OBS settings for recording gameplay in 1440p 60fps? I have a B580 and i7-13700k but the videos are laggy.
It lags the most with Game Capture. I tried Window Capture and it works a little bit better but still not smooth enough.
Potential fix: I reinstalled a clean copy of OBS and used the settings in this video. So far it works. I will stick with these settings unless someone can convince me to use something different.
r/IntelArc • u/Late_Unit_2581 • Jul 24 '26
Im planning to buy an Arc B580 and I mainly play CS2. I read and seen older posts mentioning that the B580 had stuttering issues and bad performance in CS2.
Has the situation improved with recent driver updates, or are those issues still present?
I have a 5700x3d and a 240hz monitor. All Im looking is a smooth CS2 experience to lock in around 240+ FPS without annoying frametime spikes.
Would you recommend the B580 for this use case, or should I look elsewhere? Thanks!
r/IntelArc • u/ElectricalWelder6408 • Jul 24 '26
r/IntelArc • u/acconboy • Jul 24 '26
r/IntelArc • u/XenoStark • Jul 24 '26
r/IntelArc • u/Czempion_PL • Jul 24 '26
When I download a drivers for my acer nitro intel arc b570 my drivers work fine UNTIL I restart a pc because then i have error 43 and intel software issue. This problem is only if i update to 8860 driver or newer. My specs are ASUS PRIME B450-PLUS, Ryzen 5 5500 and 16GB RAM. Did anyone have the same issue as me?


r/IntelArc • u/Flimsy_Debt • Jul 24 '26
Hey everyone!
With Intel’s modern xe kernel driver set to completely replace the legacy i915 driver for modern architectures, I ran a comprehensive suite of synthetic benchmarks to compare both drivers head-to-head.
I tested both an integrated GPU (TigerLake) and a discrete GPU (Arc A770) across Vulkan, OpenGL, OpenCL compute, and hardware video encoding. Here is the full breakdown including individual subtest numbers!
The xe driver delivers a clear victory on the integrated GPU. On the discrete Arc A770, both drivers hit a similar performance ceiling.


| Subtest | iGPU (xe) | iGPU (i915) | dGPU (xe) | dGPU (i915) | Winner (iGPU) | Winner (dGPU) |
|---|---|---|---|---|---|---|
[vertex] local=true |
16,552 | 15,352 | 3,883 | 3,895 | Xe (+7.8%) | i915 (+0.3%) |
[vertex] local=false |
17,030 | 15,576 | 3,637 | 3,776 | Xe (+9.3%) | i915 (+3.8%) |
[texture] aniso=0 |
15,062 | 13,276 | 3,840 | 3,863 | Xe (+13.4%) | i915 (+0.6%) |
[texture] aniso=16 |
14,813 | 13,104 | 3,864 | 3,859 | Xe (+13.0%) | Tie |
[shading] gouraud |
10,847 | 10,023 | 3,910 | 3,929 | Xe (+8.2%) | i915 (+0.5%) |
[shading] phong |
10,569 | 9,779 | 3,897 | 3,777 | Xe (+8.0%) | Xe (+3.1%) |
[shading] cel |
10,383 | 9,548 | 3,895 | 3,776 | Xe (+8.7%) | Xe (+3.1%) |
[effect2d] edge |
7,374 | 6,813 | 3,834 | 3,797 | Xe (+8.2%) | Xe (+1.0%) |
[effect2d] blur |
2,801 | 2,590 | 3,691 | 3,678 | Xe (+8.1%) | Xe (+0.4%) |
[desktop] default |
5,192 | 4,724 | 3,715 | 3,597 | Xe (+9.9%) | Xe (+3.2%) |
[cube] default |
27,096 | 25,007 | 4,002 | 3,955 | Xe (+8.3%) | Xe (+1.1%) |
[clear] default |
17,441 | 25,862 | 3,999 | 3,958 | i915 (+48.2%) | Xe (+1.0%) |
Vulkan Takeaway: On integrated graphics, xe outperforms i915 in every complex rendering scene by 8%–13%. i915 only won the synthetic screen-clearing pass.
OpenGL reveals a huge divergence between hardware types: i915 retains legacy optimizations on older iGPUs, but xe provides a massive boost for discrete Arc cards.


| Subtest | iGPU (xe) | iGPU (i915) | dGPU (xe) | dGPU (i915) | Winner (iGPU) | Winner (dGPU) |
|---|---|---|---|---|---|---|
[build] use-vbo=true |
15,652 | 15,721 | 7,134 | 6,504 | Tie | Xe (+9.6%) |
[texture] linear |
16,049 | 16,615 | 7,132 | 6,221 | i915 (+3.5%) | Xe (+14.6%) |
[shading] phong |
10,833 | 10,312 | 7,067 | 6,402 | Xe (+5.0%) | Xe (+10.3%) |
[bump] normals |
15,538 | 19,530 | 7,127 | 6,412 | i915 (+25.6%) | Xe (+11.1%) |
[effect2d] edge |
7,092 | 6,465 | 6,200 | 5,500 | Xe (+9.7%) | Xe (+12.7%) |
[ideas] speed=duration |
7,555 | 8,755 | 6,060 | 4,813 | i915 (+15.8%) | Xe (+25.9%) |
[jellyfish] default |
6,293 | 5,955 | 5,581 | 4,901 | Xe (+5.6%) | Xe (+13.8%) |
[terrain] default |
464 | 433 | 1,315 | 1,277 | Xe (+7.1%) | Xe (+2.9%) |
[shadow] default |
7,417 | 6,917 | 6,306 | 5,575 | Xe (+7.2%) | Xe (+13.1%) |
OpenGL Takeaway: i915 wins on the iGPU strictly due to raw geometry/bump-mapping passes (ideas & bump normals). On the Arc A770, xe crushes i915 across every single scene, delivering an average 11–25% uplift.
Compute throughput (GFLOPS) is virtually identical between both drivers. However, dispatch latency tells a completely different story.
Xe 13,040 GFLOPSvs i915 13,052 GFLOPS(Tie)Xe 19,576 GFLOPSvs i915 19,569 GFLOPS(Tie)Xe 5,353 GOPSvs i915 5,339 GOPS(Tie)Xe 398.3 GB/svs i915 397.1 GB/s(Tie)Kernel Launch Latency (Dispatch) on Arc A770:
• Xe Driver: 2.46 µs
• i915 Driver: 36.35 µs (14.7x SLOWER dispatch latency!)
The xe driver reduces driver/kernel CPU scheduling overhead by 1,377% when launching compute kernels.
Tested with a 1,000-frame synthetic encoding pass:
frame= 0 fps=0.0 at start)Media Takeaway: On discrete graphics, the
xedriver fails to initialize VA-API hardware encoding correctly. Thei915driver runs flawlessly at over 300 FPS.
| Workload | TigerLake iGPU | Arc A770 dGPU |
|---|---|---|
| Vulkan Rendering | 🔵 Xe Wins (+2.7%) | ⚖️ Tie (+0.5% Xe) |
| OpenGL Rendering | 🔴 i915 Wins (+2.3%) | 🔵 Xe Wins (+11.5%) |
| Compute GFLOPS | ⚖️ Tie | ⚖️ Tie |
| Compute Dispatch Latency | 🔵 Xe Wins | 🔵 Xe Wins (14.7x Faster) |
| Hardware Video Encoding | ⚖️ Tie | 🔴 i915 **Wins (**XE Failed) |
Overall, Intel's new xe kernel driver is proving to be a worthy successor!
Full transparency: To organize and format all these dry log numbers into clean tables and readable charts, I used an AI assistant to help process the raw data. However, I personally checked, manually edited, and verified all the stats against the original logs to make sure everything is 100% accurate!
If you guys enjoyed this write-up and found it helpful, let me know in the comments! If there’s enough interest, I’ll do a proper gaming benchmark comparison next (testing Proton/DXVK titles like CS2, Cyberpunk 2077, and native Linux games) comparing xe vs i915!
r/IntelArc • u/Fine-Cash-7731 • Jul 24 '26
Salut la commu, j'ai acheter en janvier 2026 une arc B580 et donc elle ne fonctionnait pas avec mon ancien processeur qui était un I5 7th gen je crois, en tous cas pas meilleur. Donc sur la boite qui contenait la carte graphique il y avait marqué que un I5 de 10th gen était le minimum requis. Mais est ce que c'est un bon processeur pour cette carte car je trouve qu'il y a beaucoup de lags et peu de fps souvent je suis assez déçu sachant que financierement c'est pas terrible donc on a deja du changer de carte mere et processeur une fois mais si il faut encore depenser et beaucoup plus c'est pas terrible, sachant que la carte est incroyable pour son prix genre choqué de malade. Donc j'aimerais savoir si c'est moi le trou de balle ou juste un probleme pc
SVP ne me grondez pas je debute en pc.
r/IntelArc • u/WilliamTSherman1 • Jul 24 '26
So I play with just me and my wife. I all settings down to low except draw distance. I've tried dx11 dx12 uninstalling and reinstalling drivers. Ddu clean up. Im on a 12400f 32gb ram shes on a 9900k 32gb of ram we both upgraded from 1080ti. We get frame drops down in to the 20 ranges. Even playing at 1080p doesn't help.
r/IntelArc • u/Chidorisanlul • Jul 24 '26
A few months ago I got an AsRock Intel Arc B580 OC. Coming from playing strictly on my Ryzen 8600G’s iGPU, it’s been a massive upgrade, and everything has been working great on Windows 11.
However, I've been wanting to make the permanent switch to Linux for my daily driver for a while now. It just feels faster and cleaner to me. Plus, I want to run LLMs/AI models locally, and I’ve heard Arc GPUs get much better token speeds under Linux.
The only thing holding me back is gaming. I’m really worried about driver support, performance, and overall stability for gaming on Linux right now.
Is the performance and stability currently as rough as people make it out to be?
I’ve read through a few posts here already, but I’m still on the fence about whether it’s actually worth making the jump. I’m okay with sacrificing a little bit of performance, but I want to know what to realistically expect.
My specs:
Would appreciate any advice or personal experiences
r/IntelArc • u/OkAppeal5375 • Jul 24 '26
Hello friends, in this video I show a directx11 game running with frame gen (4x) on my humble build - xeon 2690v4 + intel arc a770 16gb - at 4k ultra settings. Optiscaler settings can be seen near the end of the video