Intel Arc Pro B60 24GB: What It Is and Who It's For
Intel's Arc Pro B60 arrived in 2025 as the company's most memory-endowed professional GPU to date, pairing the second-generation Xe2 (Battlemage) architecture with 24GB of GDDR6 VRAM. For AI practitioners building local inference rigs, the memory figure matters more than raw shader counts: VRAM capacity determines which model sizes fit without quantization, and the Arc Pro B60's 24GB puts 7B through 20B-parameter LLMs fully within reach on a single card at practical precision levels.
This piece synthesizes Intel's official product documentation, the oneAPI and OpenVINO developer ecosystems, and community benchmarks published across r/LocalLLaMA and Intel's developer forums. No independent first-party benchmarking is conducted here.
Architecture: Xe2 and the XMX Matrix Engines
The Xe2 microarchitecture — introduced in the consumer Battlemage line (Arc B580, B770) — brought improvements to both gaming and compute workloads relative to first-generation Xe-HPG (Alchemist). The Arc Pro B60 carries those improvements into the professional segment with doubled VRAM headroom compared to the B580.
The architectural feature that matters most for AI practitioners is Xe Matrix Extensions (XMX) — Intel's term for the dedicated matrix multiply-accumulate units embedded in each Xe2 Xe-core. Per Intel's developer documentation, XMX units handle FP16, BF16, INT8, and INT4 precision operations, which are the formats dominating modern LLM inference and diffusion model pipelines.
| Feature | Arc Pro B60 | Details |
|---|---|---|
| Architecture | Xe2 (Battlemage) | Second-gen Intel discrete GPU arch |
| VRAM | 24GB GDDR6 | Headline spec for AI workloads |
| Memory bus | 384-bit (per Intel spec sheets) | Verify current spec at ark.intel.com |
| AI precision | FP16, BF16, INT8, INT4 | Via XMX matrix engines |
| APIs | oneAPI, OpenVINO, DirectX 12 | Cross-framework coverage |
| Platform | Windows 11, Linux (driver + oneAPI) | Both supported |
For context on how Xe2 consumer cards have performed in AI workloads before the Pro B60's launch, SpecPicks' Intel Arc Stable Diffusion benchmark guide covering the A770, B580, and B60 documents the generational trajectory in image generation throughput.
VRAM Capacity: The Core Value Proposition
VRAM is the primary spec for local AI inference, and 24GB is a meaningful tier. It sits above the 16GB consumer ceiling (RTX 4080, RX 7900 GRE) and on par with professional options from NVIDIA's RTX 6000 Ada and AMD's Radeon Pro W7900.
What fits in 24GB at various precisions (per standard model sizing: FP16 = 2 bytes/param, INT8 = 1 byte/param, INT4 = 0.5 bytes/param plus overhead):
| Model Size | FP16 | INT8 | INT4 (GGUF) |
|---|---|---|---|
| 7B (LLaMA 3, Mistral, Gemma) | ~14GB ✓ | ~7GB ✓ | ~4GB ✓ |
| 13B | ~26GB — tight | ~13GB ✓ | ~7GB ✓ |
| 20B | ~40GB — no | ~20GB ✓ | ~10GB ✓ |
| 30B | ~60GB — no | ~30GB — tight | ~15GB ✓ |
| 70B | — | — | ~35GB — no |
At INT4 via GGUF (llama.cpp with SYCL backend, or Ollama via the IPEX-LLM layer), 13B and 20B models run with substantial headroom for KV cache and context. Per community discussion on r/LocalLLaMA, Intel's SYCL backend for llama.cpp has reached production-viable token rates on Xe2 cards, with the B580 (12GB) establishing that the architecture is a credible inference platform. The B60 doubles that VRAM without changing the underlying compute model.
For deployment patterns that combine Intel XPU backends with container orchestration, SpecPicks' Ollama on Intel + AMD via IPEX-LLM Docker Compose Guide covers the full stack setup including Docker image selection and SYCL device targeting.
Software Ecosystem: oneAPI, OpenVINO, and IPEX
The professional Arc Pro positioning matters most here. Intel's developer toolchain for Arc GPUs is more coherent than its consumer-tier documentation implies, and the B60 sits at the intersection of three distinct software paths:
Intel Extension for PyTorch (IPEX)
IPEX brings native torch.xpu device support to Arc and Arc Pro GPUs. Per Intel's IPEX GitHub repository, models written for CUDA can frequently be adapted by replacing .cuda() device calls with .xpu() and installing the XPU-enabled PyTorch wheel. Intel publishes IPEX releases for both Linux and Windows, with conda and pip install paths documented in the repository README.
For a practical comparison of IPEX-LLM versus standard Ollama inference on Intel hardware, SpecPicks' Intel IPEX-LLM vs Ollama on AMD AI Rig Guide covers the tradeoffs in throughput and ease of setup.
OpenVINO
Intel's OpenVINO toolkit is a production inference runtime that supports Arc GPUs via the GPU plugin backend. Per the OpenVINO documentation, models converted to OpenVINO's Intermediate Representation (IR) format can be deployed on Arc Pro with deterministic INT8 or FP16 inference latency — relevant for enterprise computer vision pipelines (object detection, classification, segmentation) and for organizations wanting stable quantized inference without CUDA dependencies.
llama.cpp SYCL Backend
For GGUF-format LLM inference, the llama.cpp project maintains a SYCL backend that targets Intel Arc via Intel's oneAPI Base Toolkit. Per the llama.cpp repository documentation, compilation requires the oneAPI DPC++ compiler and oneMKL libraries, both available free from Intel's developer portal. Community builds for Windows (without full oneAPI install) are periodically published on GitHub.
Framework support at a glance:
| Framework | Arc Pro B60 | Notes |
|---|---|---|
| PyTorch + IPEX | ✓ (torch.xpu) | Requires IPEX XPU wheel from Intel GitHub |
| OpenVINO | ✓ GPU plugin | Best path for INT8 production inference |
| llama.cpp (SYCL) | ✓ Community builds | GGUF model inference, needs oneAPI toolkit |
| Ollama via IPEX-LLM | ✓ | See Docker Compose guide |
| Stable Diffusion WebUI | ✓ IPEX-arc patch | See WebUI performance guide |
| ComfyUI | ✓ XPU fork | Xe2 support improving with each upstream release |
Stable Diffusion and Image Generation
Community testing documented across r/LocalLLaMA and Intel's developer forums confirms that Xe2-based Arc cards run Stable Diffusion via the IPEX-arc patch for Automatic1111 and via ComfyUI's XPU code path. Per SpecPicks' Intel Arc Stable Diffusion performance guide, the B-series Xe2 cards improved substantially over first-generation Alchemist (A770) in diffusion throughput, with FP16 pipeline acceleration through the XPU patch.
For SDXL workloads specifically, the 24GB VRAM in the Arc Pro B60 eliminates the memory pressure that forces 12GB consumer cards to tile or reduce batch sizes at 1024×1024. The Arc B50 vs RTX 3060 12GB comparison on SpecPicks illustrates how VRAM headroom affects throughput at higher resolutions — a dynamic that scales directly to the B60's advantage.
For the specific driver and IPEX version combinations confirmed to work on Arc B-series hardware, SpecPicks' Arc B60 Stable Diffusion setup guide documents the end-to-end configuration as of late 2025, and the Intel Arc Stable Diffusion WebUI guide covers Automatic1111-specific optimizations.
Power, Thermals, and Form Factor
The Arc Pro B60 targets OEM workstation integration as a professional GPU, which shapes its power delivery and cooling approach differently from consumer gaming cards. Per Intel's product segmentation, Arc Pro cards ship with dual-slot blower or active open-air cooling configurations depending on the workstation chassis vendor.
Exact TDP figures were part of Intel's CES 2025 professional GPU announcement. Verify the current shipping TDP at Intel's ARK database (ark.intel.com), as pre-release spec sheets have historically differed from final shipping configurations in Arc Pro launches. The broader Arc Pro B series is designed for standard PCIe power delivery in JEDEC-compliant workstation chassis.
For sustained 24/7 inference workloads — a common scenario in small-lab LLM serving — workstation chassis with active front-to-back airflow are recommended in Intel's workstation partner documentation. Consumer tower cases with restricted GPU exhaust can create thermal throttling conditions under prolonged compute loads.
Building a Workstation Around the Arc Pro B60
The Arc Pro B60's XPU memory bandwidth benefits from fast, adequate system RAM. In hybrid CPU+GPU inference pipelines — particularly when model layers overflow VRAM into system RAM — host memory bandwidth becomes a bottleneck. A 32GB+ kit eliminates that constraint for most 7B–13B workflows.
For system RAM, the CORSAIR Vengeance LPX DDR4 32GB (2×16GB) kit at $214.59 and the Crucial 16GB DDR4 3200MHz kit at $127.00 represent the 32GB floor recommended for workstation AI workflows. DDR5 platforms with higher bandwidth will further improve KV-cache spill performance for larger context windows.
For model storage, practitioners managing multiple 7B–30B checkpoints need fast sequential read speeds for sub-30s cold-start times. The Samsung 980 NVMe SSD 1TB at $255.00 delivers the PCIe Gen 3 sequential read bandwidth appropriate for weight loading without the bottleneck of SATA.
Indicative system bill of materials for an Arc Pro B60 AI rig:
| Component | Role | Notes |
|---|---|---|
| Arc Pro B60 24GB | Primary AI compute | 24GB VRAM, XMX matrix engines |
| 32–64GB DDR4/DDR5 RAM | KV cache + host inference | 32GB minimum for 13B+ workflows |
| NVMe SSD 1TB+ | Model weight storage | Fast sequential read for cold-start |
| Intel 12th/13th/14th gen CPU | oneAPI validated platform | IPEX and OpenVINO are Intel-stack |
| Workstation chassis | Thermal headroom | Blower exhaust recommended for 24/7 |
The IPEX stack is jointly validated against Intel CPUs, making a matched Intel CPU + Arc Pro B60 combination the most straightforward path to a supported configuration. AMD CPU platforms can run Arc cards but may require additional driver configuration for compute (not gaming).
Who Should Consider the Arc Pro B60?
Strong fit:
- AI developers invested in Intel's oneAPI ecosystem who need 24GB VRAM in a professional workstation form factor with long driver support lifecycles
- Labs evaluating OpenVINO for production inference pipelines who want a validated Intel GPU backend
- Stable Diffusion practitioners who have exhausted 12GB consumer cards and want professional-tier VRAM with driver stability guarantees
- Organizations already on Intel CPU infrastructure seeking a validated integrated stack (IPEX + Arc Pro is Intel's reference combination)
Less likely to be the primary choice:
- Workloads requiring CUDA-native libraries with no XPU equivalent (TensorRT-specific custom kernels, some CUDA-only research frameworks)
- Deployments where cloud provider GPU availability — not local hardware — is the constraint
- Scenarios where a used NVIDIA RTX 3090 (24GB, widely available) fits budget better and the CUDA ecosystem is a hard requirement
For a broader view of how Intel's Arc lineup positions across the AI GPU landscape, SpecPicks' Intel Arc GPU for Stable Diffusion overview provides the full family context from A770 through B-series.
Frequently Asked Questions
What LLM sizes can the Arc Pro B60 handle? At FP16, 7B models (~14GB) fit with headroom. At INT8, 13B and 20B models fit within 24GB. At INT4 GGUF quantization, 30B models (~15GB) are within range. Context: per standard model sizing (FP16 = 2 bytes per parameter), the 24GB ceiling comfortably covers the 7B–20B range at mixed precision without host RAM spill.
Does the Arc Pro B60 support Linux? Per Intel's oneAPI and driver documentation, Arc Pro GPUs support Linux via the open-source kernel graphics driver and Intel's oneAPI Base Toolkit. IPEX, OpenVINO, and llama.cpp's SYCL backend all target Linux as a primary platform alongside Windows 11.
Citations and sources
- https://ark.intel.com — Intel ARK product specifications database (Arc Pro B series)
- https://www.intel.com/content/www/us/en/developer/tools/oneapi/overview.html — Intel oneAPI overview and developer documentation
- https://docs.openvino.ai/2024/home.html — OpenVINO toolkit documentation, GPU plugin
- https://github.com/intel/intel-extension-for-pytorch — Intel Extension for PyTorch (IPEX), XPU device support and release notes
- https://github.com/ggerganov/llama.cpp — llama.cpp SYCL backend documentation for Intel Arc
- https://www.reddit.com/r/LocalLLaMA/ — Community benchmark discussions and Intel Arc inference testing
This piece is editorial synthesis based on publicly available information. No independent first-party benchmarking is reported.
