intel

29 mods across 3 repositories, 352 stars between them.

linux-perf

01

intel/intel-performance-skills

Skill Claude CodeCodex

Profile and fix Linux performance problems using perf. Workflows: (A) hardware counters -- IPC, cache-miss, branch mispredictions; (B) hotspot profiling -- which functions and source lines consume CPU, with SIMD and accumulator detection; (C) cache-line contention -- false sharing, HITM, perf c2c; (D) core-count…

312 2mo ago B 202 tokens

intel/intel-performance-skills

Skill Claude CodeCodex

Detect and fix x86/C/C++ performance patterns from source code or profiling output (perf, VTune, flamegraphs). Invoke when the user asks to optimize, review for performance, or write new SIMD/vectorized code — even without profiling data. Trigger on: serial accumulator loops, narrow SIMD (xmm/ymm that could be…

312 2mo ago A 227 tokens

phoronix-test-suite

03

intel/intel-performance-skills

Skill Claude CodeCodex

Install, run, parse, and optimize benchmarks from the Phoronix Test Suite (PTS). Use this skill whenever the user mentions "phoronix", "pts/", or "phoronix-test-suite", or asks to run, measure, improve, or optimize a PTS test — e.g., "run pts/mt-dgemm", "optimize pts/compress-zstd", "what score does pts/x265 get".…

312 2mo ago A 137 tokens

intel-gpu-ai-skills

04

intel/gpu-ai-skills

Plugin Claude Code

Plugin marketplace listing 20 plugins: cuda-to-xpu-migration, xpu-port, xpu-discover, xpu-runtime-preflight, xpu-container-run.

16 5d ago A tokens not measured original Apache-2.0

intel-gpu-ai-skills

05

intel/gpu-ai-skills

Plugin Claude Code

Agent Skills for running, benchmarking, profiling, and fixing arbitrary Hugging Face safetensors models on Intel GPUs. Container-first, upstream-only, Battlemage / Arc / Arc Pro / Data Center GPU Max.

16 5d ago A tokens not measured original Apache-2.0

intel/gpu-ai-skills

Instructions file CodexOpenCode

Instructions for intel/gpu-ai-skills, covering agent contract, what this repo is, how to discover skills, what ships vs what is internal and conventions in this repo.

16 5d ago C 650 tokens original Apache-2.0

intel/gpu-ai-skills

Instructions file

Instructions for intel/gpu-ai-skills, covering claude.md, what this repository is, repository structure, commands and validation (required before any skill change).

16 5d ago C 1,541 tokens original Apache-2.0

intel/gpu-ai-skills

Agent

Router agent exposing Intel GPU AI skill packs for running, benchmarking, and profiling Hugging Face models, and migrating workloads from CUDA on Intel GPUs.

16 5d ago A 37 tokens original Apache-2.0

intel/gpu-ai-skills

Skill Claude CodeCodex

Create a CUDA-to-XPU migration assessment for an existing AI repo. Identify CUDA-specific assumptions, route to the right XPU skills, produce a migration report. Use when the user has a CUDA repo, notebook, Dockerfile, launch script, HF / vLLM / SGLang workload, or Triton kernel and asks to migrate it to Intel Arc /…

16 5d ago A 163 tokens original Apache-2.0

llamacpp-xpu-run

10

intel/gpu-ai-skills

Skill Claude CodeCodex

Run a GGUF model on an Intel GPU using llama.cpp's SYCL backend (Level Zero) with the official intel.Dockerfile. Covers building the Docker image from source at a pinned tag, launching llama-server with an OpenAI-compatible API, device selection, multi-GPU layer splitting, all recommended runtime env vars…

16 5d ago A 163 tokens original Apache-2.0

model-can-it-fit

11

intel/gpu-ai-skills

Skill Claude CodeCodex

Estimate whether a Hugging Face decoder-only LLM, MoE, or VLM fits in Intel GPU VRAM for a quantization, context length, concurrency, runtime, and tensor-parallel setting. Use for memory-fit or max-model-len planning before launch. Reports weights, KV cache, activations, framework overhead, and first mitigation. Not…

16 5d ago A 106 tokens original Apache-2.0

intel/gpu-ai-skills

Skill Claude CodeCodex

Recommend how to configure vLLM-XPU for a Hugging Face decoder-only LLM on Intel Arc B-series GPUs: choose quantization, KV dtype, DP/TP layout, max concurrency, and max context using roofline math against published hardware specs. Use when the user asks "How should I configure vLLM?", requests the best vLLM…

16 5d ago A 121 tokens original Apache-2.0

sglang-xpu-bench

13

intel/gpu-ai-skills

Skill Claude CodeCodex

Benchmark a running SGLang-XPU server on an Intel GPU using sglang.benchserving. Measures TTFT, TPOT, ITL, end-to-end latency, and throughput against the OpenAI-compatible endpoint. Use after sglang-xpu-run. Not for vLLM servers (use vllm-xpu-bench) or no-server PyTorch (use torch-xpu-bench).

16 5d ago C 93 tokens original Apache-2.0

sglang-xpu-run

14

intel/gpu-ai-skills

Skill Claude CodeCodex

Serve a Hugging Face safetensors model on an Intel GPU using SGLang's XPU backend with the OpenAI-compatible API. Covers pulling the pre-built intel/sglang-dev:latest image, fixing the render-group and UMD/kernel compatibility issues that affect non-root sglang images, the SYCLUR / Level Zero env vars needed on…

16 5d ago D 170 tokens original Apache-2.0

torch-xpu-bench

15

intel/gpu-ai-skills

Skill Claude CodeCodex

Benchmark a Hugging Face model on an Intel GPU through pure PyTorch + Transformers, single-process, no HTTP server. Measures generate() throughput in tokens/sec, time-to-first-token, decode-step latency, and peak XPU memory. Also covers diffusion and encoder-only models via references/non-llm-snippets.md. Use after…

16 5d ago A 96 tokens original Apache-2.0

torch-xpu-profile

16

intel/gpu-ai-skills

Skill Claude CodeCodex

Profile a Hugging Face model on Intel GPU at the PyTorch level with torch.profiler and Kineto. Captures CPU + XPU timeline, exports Chrome trace, identifies hottest kernels and async-overlap gaps. Use when the user asks why a model is slow, which op is the bottleneck, or where the GPU is idle. Not for profiling inside…

16 5d ago A 118 tokens original Apache-2.0

torch-xpu-run

17

intel/gpu-ai-skills

Skill Claude CodeCodex

Run an arbitrary Hugging Face safetensors model on an Intel GPU using upstream PyTorch (>= 2.8) with the built-in torch.xpu device. Covers loading from the Hub, picking the right dtype, autocast, multi-GPU with accelerate's devicemap, and the CUDA -> XPU code translation a user has to do once. Use for the Transformers…

16 5d ago A 143 tokens original Apache-2.0

vllm-xpu-bench

18

intel/gpu-ai-skills

Skill Claude CodeCodex

Benchmark a running vLLM-XPU OpenAI-compatible server on an Intel GPU using vllm bench. Measures TTFT (time-to-first-token), TPOT (time-per-output-token), ITL (inter-token latency), end-to-end latency, and throughput under concurrency. Covers online (vllm bench serve) and offline (vllm bench throughput) modes…

16 5d ago C 124 tokens original Apache-2.0

vllm-xpu-profile

19

intel/gpu-ai-skills

Skill Claude CodeCodex

Profile a running vLLM-XPU server with torch.profiler around a window of real requests, either via /startprofile and /stopprofile HTTP endpoints or via vllm bench --profile for offline runs. Use to find the dominant op under real concurrent traffic. Not for pure PyTorch (use torch-xpu-profile), SYCL kernel-level…

16 5d ago A 105 tokens original Apache-2.0

vllm-xpu-run

20

intel/gpu-ai-skills

Skill Claude CodeCodex

Serve a Hugging Face safetensors model on an Intel GPU with upstream vLLM-XPU's OpenAI-compatible API, or check whether a model or architecture is currently documented on XPU. Covers live support lookup, image choice, container launch, known serve-flag requirements, model-impl fallback, and attention/quant…

16 5d ago A 129 tokens original Apache-2.0

xpu-container-run

21

intel/gpu-ai-skills

Skill Claude CodeCodex

Launch a Docker container with Intel GPU access on Linux. Encodes the correct combination of --device /dev/dri, render-group access, --ipc=host, ZEAFFINITYMASK pinning, Hugging Face cache mount, and --entrypoint /bin/bash for interactive use. Use when running any Intel-XPU container (vLLM-XPU, sglang-xpu, torch-XPU…

16 5d ago A 146 tokens original Apache-2.0

xpu-deploy-plan

22

intel/gpu-ai-skills

Skill Claude CodeCodex

Plan an end-to-end Intel XPU model deployment by chaining existing skills. Calls xpu-runtime-preflight (readiness), model-can-it-fit (sizing), model-config-recommend (flags), and the selected runtime skill (vllm-xpu-run / sglang-xpu-run / torch-xpu-run), then writes a single PLAN.md with one exact launch command…

16 5d ago A 149 tokens original Apache-2.0

xpu-discover

23

intel/gpu-ai-skills

Skill Claude CodeCodex

Inventory Intel GPUs (Arc, Arc Pro, Data Center GPU Max) on a Linux host. Detect devices, check driver health, list processes using each XPU, run a quick diagnostic, and read live utilisation.

16 5d ago A 48 tokens original Apache-2.0

intel/gpu-ai-skills

Skill Claude CodeCodex

Before loading a Hugging Face model on Intel XPU, detect its actual type (text generation, text encoder, seq2seq, vision classification, vision-language, audio encoder, audio seq2seq, multimodal VL, diffusion, time-series, reward model, masked LM) so the agent picks the right AutoModel class and input kwargs. Prevents…

16 5d ago A 141 tokens original Apache-2.0