
Description
Use this skill when the user is doing hands-on DOCA GPUNetIO programming — wiring a CUDA kernel on an NVIDIA GPU to a doca-eth queue via doca_gpu_eth_rxq / doca_gpu_eth_txq, standing up the per-CUDA-device doca_gpu context, designing the persistent CUDA kernel that drains the GPU-visible queue, running the dual capability check (DOCA cap-query plus cudaGetDeviceProperties), registering cudaMalloc pools via doca_buf_arr_create_*, or debugging DOCA_ERROR_* returns from the GPUNetIO API. Trigger even when the user does not explicitly mention "DOCA GPUNetIO" or "persistent kernel" — typical implicit phrasings include "CUDA kernel reading packets directly from the NIC", "GPU-initiated networking on BlueField", "DOCA_ERROR_DRIVER on doca_gpu_create", "nvidia_peermem not loaded", "kernel-per-packet is too slow", or "which GPU supports GPU-side packet I/O". Refuse and route elsewhere for general CUDA programming, DOCA Ethernet queue bring-up, DOCA DPA, or DOCA install — those belong to other skills.
SKILL.md
DOCA GPUNetIO
Where to start: This skill assumes DOCA is already installed,
the CUDA toolkit is installed and matched to the DOCA install, and
the user is doing hands-on GPUNetIO work — i.e. wiring a DOCA
network queue into a CUDA kernel on an NVIDIA GPU. Open
TASKS.md if the user wants to do something
(configure / build / modify / run / test / debug); open
CAPABILITIES.md when the question is what
can GPUNetIO express on this version + this GPU. If the user has
not installed DOCA yet, route to
doca-setup first; if the user has
not set up the underlying Ethernet RX/TX queues yet, that is a
DOCA Ethernet question (no library skill ships for it yet in this
bundle — route via
doca-public-knowledge-map
to the public DOCA Ethernet guide).
Example questions this skill answers well
The CLASSES of GPUNetIO questions this skill is built to answer, each with one worked example. The agent should treat the class as the load-bearing piece — the worked example is a single instance.
- "How do I get a CUDA kernel to receive packets directly from
the NIC?" — worked example: "persistent kernel on one GPU
reads packets from a
doca_gpu_eth_rxqbuilt on top of a representordoca_eth_rxqand counts them per-flow". Answered by the persistent-kernel pattern inCAPABILITIES.md ## Capabilities and modes- the GPU-side bring-up workflow in
TASKS.md ## configure.
- the GPU-side bring-up workflow in
- "Can I run GPUNetIO on this GPU?" — worked example: "my
host has one Ampere card and one Turing card; which one
supports GPU-initiated networking?". Answered by the dual
capability-discovery rule (DOCA cap-query AND
cudaGetDevicePropertiesagainst the CUDA device ordinal) inCAPABILITIES.md ## Capabilities and modes- the device-enumeration step in
TASKS.md ## configure.
- the device-enumeration step in
- "Why does my GPUNetIO setup fail with
DOCA_ERROR_NOT_SUPPORTEDeven though doca-eth came up fine?" — worked example: "nvidia_peermemis not loaded so GPUDirect RDMA is unavailable". Answered by the env preconditions inCAPABILITIES.md ## Safety policy- the env checklist in
TASKS.md ## configurestep 1.
- the env checklist in
- "How do I move data between CUDA-allocated buffers and a DOCA
queue?" — worked example: "use
cudaMallocfor the receive buffer pool and register it with DOCA viadoca_buf_arr_create_*before starting the context". Answered by the CUDA-allocator- DOCA-registration overlay in
CAPABILITIES.md ## Safety policy - the buffer-prep step in
TASKS.md ## configurestep 4.
- DOCA-registration overlay in
- "Is the GPUNetIO API I'm reading about on my installed DOCA +
CUDA combination?" — worked example: "is the persistent-kernel
helper available with the CUDA toolkit version I have?".
Answered by the version-compatibility overlay in
CAPABILITIES.md ## Version compatibilitywhich cross-links the canonical detection chain indoca-versionand adds the GPUNetIO-specific DOCA must match CUDA overlay. - "What does this
DOCA_ERROR_*from a GPUNetIO call mean and which layer caused it?" — worked example: "DOCA_ERROR_DRIVERondoca_gpu_*_create— is it DOCA, CUDA, or the underlying doca-eth queue?". Answered by the GPUNetIO overlay on the cross-library taxonomy inCAPABILITIES.md ## Error taxonomy- the layered ladder in
TASKS.md ## debugthat escalates todoca-debug.
- the layered ladder in
Audience
This skill serves external developers building applications
that consume the DOCA GPUNetIO library — i.e., users whose code
calls doca_gpu_* from host C/C++ to stand up the per-GPU
context and the GPU-visible queue handles, and whose CUDA kernel
(.cu translation unit) uses those handles from device code to
submit / receive packets. The canonical target shape is the GPU
Packet Processing reference application: a CUDA persistent
kernel on an NVIDIA GPU that polls a GPU-visible RX queue and
processes packets in-place on the GPU. It is not for NVIDIA
developers contributing to DOCA GPUNetIO itself.
Language scope. DOCA GPUNetIO ships as a C / CUDA library
with pkg-config module name doca-gpunetio. The host-side API
is C; the device-side API is CUDA C++ used inside a .cu
kernel. The shipped samples and the GPU Packet Processing
reference application are written in C + CUDA C++ (NVIDIA's
choice). Other-language consumers are limited in practice — the
device-side API has no FFI escape hatch because the kernel must
be a CUDA translation unit — but a Rust / Go / Python host-side
wrapper that drives the host-side doca_gpu_* setup and
launches a CUDA kernel built separately is still useful, and the
skill keeps the lifecycle, capability-discovery, env-precondition,
and error-taxonomy guidance language-neutral.
When to load this skill
Load this skill when the user is doing hands-on DOCA GPUNetIO work, in any host language plus CUDA. Concretely:
- Initializing a
doca_gpuagainst a specific CUDA device ordinal on a host with one or more NVIDIA GPUs. - Creating a GPU-visible queue handle (
doca_gpu_eth_rxq,doca_gpu_eth_txq) on top of an existingdoca_eth_rxq/doca_eth_txqfrom DOCA Ethernet, and passing the handle into a CUDA kernel for device-side use. - Writing or modifying the persistent CUDA kernel that drains the GPU-visible RX queue in a long-running loop (the canonical GPU Packet Processing shape).
- Allocating GPU buffers via
cudaMallocand registering them with DOCA via thedoca_buf_arr_create_*family beforedoca_ctx_start(). - Checking which GPUNetIO features are supported on the active
doca_devinfo(DOCA cap-query family) AND on the candidate CUDA device (cudaGetDevicePropertiesand CUDA-driver-version checks). - Debugging a
DOCA_ERROR_*returned from a GPUNetIO call — in particular disambiguating DOCA capability missing from CUDA device too old fromnvidia_peermemnot loaded from CUDA driver + DOCA version skew. - Designing host-side bindings for non-C languages that drive a CUDA kernel they built separately — the env-precondition and capability-discovery rules in this skill still apply.
Do not load this skill for general DOCA orientation, install
of DOCA or the CUDA toolkit, the underlying DOCA Ethernet queue
setup, or non-GPUNetIO library questions. For those, route
through doca-public-knowledge-map
to the matching upstream guide.
What this skill provides
This is a thin loader. The body keeps only the orientation needed to pick the right next file. The substantive GPUNetIO-specific material lives in two companion files:
CAPABILITIES.md— what GPUNetIO can express on this version- this GPU: the
doca_gpuper-device context, the GPU-visible RX / TX queue handles layered on doca-eth, the persistent CUDA-kernel pattern as the default usage shape, the capability-query surface (the doca-ethdoca_eth_rxq_cap_is_type_supported/doca_eth_rxq_cap_get_*family indoca_eth_rxq.h, plus the matchingdoca_eth_txq_cap_*family, on the DOCA side, pluscudaGetDevicePropertieson the CUDA side), the GPUNetIO error taxonomy mapped onto the cross-libraryDOCA_ERROR_*set, the observability surface (CUDA-side counters + DOCA-side per-task completion), and the safety policy that gates env preconditions (CUDA + DOCA version match,nvidia_peermem, CUDA buffer registration).
- this GPU: the
TASKS.md— step-by-step workflows for the six in-scope GPUNetIO verbs:configure,build,modify,run,test,debug. Plus a## rollbackoverlay (GPUNetIO-specific five-step teardown that signals the persistent kernel to drain, unregisters GPU buffers in reverse-register order, and leaves the parent doca-eth queue intact) and the 5-phase universal debug-loop instantiation appended to## debug. Plus aDeferred task verbsblock that points out-of-scope questions at the right next skill.
The skill assumes a host where DOCA is already installed at the
standard location, an NVIDIA GPU is physically present, the CUDA
toolkit is installed and its version is matched to the DOCA
install per the DOCA Compatibility Policy, and the underlying
DOCA Ethernet RX/TX queues are already configured (this skill
sits on top of doca-eth, not below it). It does not cover
installing DOCA or the CUDA toolkit — that path goes through
doca-setup.
What this skill deliberately does not ship
This skill is agent guidance, not a samples or templates bundle. To keep the boundary clean, it deliberately does not contain — and pull requests should not add:
- Pre-written DOCA GPUNetIO application source code or CUDA
kernel source, in any language. The verified GPUNetIO
source is the shipped C + CUDA samples at
/opt/mellanox/doca/samples/doca_gpunetio/and the GPU Packet Processing reference application. The agent's job is to route the user to those files and prescribe a minimum-diff modification on them via the universal modify-a-sample workflow indoca-programming-guide, layered with the GPUNetIO-specific overrides inTASKS.md ## modify. - Standalone build manifests (
meson.build,CMakeLists.txt, …) parked inside the skill. The agent constructs the build manifest in the user's project directory against the user's installed DOCA + CUDA toolkit, wherepkg-config --modversion doca-gpunetioandnvcc --versionare the two sources of truth. - A
samples/,bindings/, orreference/subtree of any kind. A mock or incomplete artifact in this skill's tree, even one labeled "reference", is misleading: users will read it as buildable.
Loading order
- Read this
SKILL.mdfirst to confirm the user's question is in scope. - For the GPUNetIO capability matrix, the
doca_gpuper-device context, the persistent-kernel pattern, the dual capability query, the env-precondition policy, the error taxonomy, the observability surface, and the safety policy, see CAPABILITIES.md. - For step-by-step workflows — configure, build, modify, run, test, debug — see TASKS.md.
Both companion files cross-link to each other,
doca-version for the canonical
DOCA version-handling rules (with the GPUNetIO overlay that DOCA
must match CUDA), and
doca-public-knowledge-map
whenever the right answer is "look it up in the public DOCA
GPUNetIO guide, the DOCA Compatibility Policy, the CUDA toolkit
docs, or the on-disk install layout" rather than
"GPUNetIO-specific guidance".
Related skills
doca-public-knowledge-map— the routing table for every public DOCA documentation source and the on-disk layout of an installed DOCA package. The GPUNetIO public guide is at https://docs.nvidia.com/doca/sdk/DOCA-GPUNetIO/index.html; the GPU Packet Processing reference application is reachable from there. The CUDA toolkit and DOCA Compatibility Policy links live in the same routing table.doca-setup— env preparation, install verification, CUDA toolkit install / verification, and the I have no install yet path with the public NGC DOCA container. This skill assumes its preconditions are satisfied AND that CUDA is installed at a version that matches DOCA.doca-version— canonical DOCA version-handling rules. This skill's## Version compatibilitycross-links the four-way match rule and adds the GPUNetIO-specific DOCA-and-CUDA must match overlay per the DOCA Compatibility Policy.doca-structured-tools-contract— the bundle's structured-tools precedence rule (detect / prefer / fall back / report). The Command appendix in TASKS.md honors this contract.doca-programming-guide— general DOCA programming patterns shared by every library: the canonicalpkg-config+ meson build pattern, the universal modify-a-shipped-sample first-app workflow, the universal lifecycle, the cross-libraryDOCA_ERROR_*taxonomy, and the program-side debug order. This skill layers GPUNetIO specifics on top.doca-debug— the cross-cutting debug ladder (install / version / build / link / runtime / program / driver). GPUNetIO-specific debug (CUDA + DOCA version skew,nvidia_peermemmissing, persistent-kernel silent hangs, CUDA-allocator + DOCA-registration mismatches) overlays on top of that ladder.
DOCA Ethernet is GPUNetIO's mandatory companion library: GPU-visible
RX / TX queue handles are layered on top of doca_eth_rxq /
doca_eth_txq from DOCA Ethernet. No libs/doca-eth/ skill
ships in this bundle yet; for the underlying Ethernet queue
setup, route via
doca-public-knowledge-map
to the public DOCA Ethernet guide and to the shipped
/opt/mellanox/doca/samples/doca_eth/ samples.
More skills from the skills repository
View all 305 skillsaccelerated-computing-cudf
accelerate data processing with cuDF
Jul 14Data AnalysisData EngineeringNVIDIAPerformanceaiq-deploy
deploy and manage NVIDIA AI-Q infrastructure
Jul 14DeploymentInfrastructureNVIDIAaiq-research
conduct deep research with AI-Q
Jul 14AgentsNVIDIAResearchamc-run-sample-calibration
run AMC sample dataset calibration
Jul 17Data AnalysisNVIDIATestingamc-run-video-calibration
calibrate video datasets with AutoMagicCalib
Jul 17AutomationImagingNVIDIAVideoamc-setup-calibration-stack
deploy AutoMagicCalib microservice with Docker
Jul 17DeploymentDockerNVIDIAOperations
More from NVIDIA
View publishernemoclaw-user-guide
retrieve NemoClaw documentation and configuration
NemoClaw
Jul 20DocumentationMCPSearchmcore-build-and-dependency
manage Megatron-LM development environments
Megatron-LM
Jul 14ContainersDeploymentPythonmcore-bump-base-image
update NVIDIA PyTorch base images
Megatron-LM
Jul 14CI/CDDeploymentmcore-cicd
manage CI/CD pipelines for Megatron-LM
Megatron-LM
Jul 14CI/CDDeploymentGitHubmcore-create-issue
investigate CI failures and create issues
Megatron-LM
Jul 14DebuggingGitHubTriagemcore-linting-and-formatting
lint and format Megatron-LM code
Megatron-LM
Jul 14Best PracticesCode Analysis