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 — route to
doca-eth.
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_rxq built on top of a
representor doca_eth_rxq and counts them per-flow". Answered
by the persistent-kernel pattern in
CAPABILITIES.md ## Capabilities and modes
- the GPU-side bring-up workflow in
TASKS.md ## configure.
- "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
cudaGetDeviceProperties against the CUDA device ordinal) in
CAPABILITIES.md ## Capabilities and modes
- the device-enumeration step in
TASKS.md ## configure.
- "Why does my GPUNetIO setup fail with
DOCA_ERROR_NOT_SUPPORTED even though doca-eth came up
fine?" — worked example: "nvidia_peermem is not loaded so
GPUDirect RDMA is unavailable". Answered by the env preconditions
in CAPABILITIES.md ## Safety policy
- the env checklist in
TASKS.md ## configure step 1.
- "How do I move data between CUDA-allocated buffers and a DOCA
queue?" — worked example: "use
cudaMalloc for the receive
buffer pool and register it with DOCA via doca_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 ## configure step 4.
- "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 compatibility
which cross-links the canonical detection chain in
doca-version and 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_DRIVER
on doca_gpu_*_create — is it DOCA, CUDA, or the underlying
doca-eth queue?". Answered by the GPUNetIO overlay on the
cross-library taxonomy in
CAPABILITIES.md ## Error taxonomy
- the layered ladder in
TASKS.md ## debug that escalates to
doca-debug.
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_gpu against 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 existing doca_eth_rxq /
doca_eth_txq from 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
cudaMalloc and registering them
with DOCA via the doca_buf_arr_create_* family before
doca_ctx_start().
- Checking which GPUNetIO features are supported on the active
doca_devinfo (DOCA cap-query family) AND on the candidate
CUDA device (cudaGetDeviceProperties and CUDA-driver-version
checks).
- Debugging a
DOCA_ERROR_* returned from a GPUNetIO call — in
particular disambiguating DOCA capability missing from CUDA
device too old from nvidia_peermem not 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_gpu per-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-eth
doca_eth_rxq_cap_is_type_supported / doca_eth_rxq_cap_get_*
family in doca_eth_rxq.h, plus the matching
doca_eth_txq_cap_* family, on the DOCA side, plus
cudaGetDeviceProperties on the CUDA side), the GPUNetIO error taxonomy mapped onto the cross-library
DOCA_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).
TASKS.md — step-by-step workflows for the six in-scope
GPUNetIO verbs: configure, build, modify, run, test,
debug. Plus a ## rollback overlay (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 a Deferred task verbs block 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 in
doca-programming-guide,
layered with the GPUNetIO-specific overrides in
TASKS.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,
where pkg-config --modversion doca-gpunetio,
pkg-config --modversion doca-common, and nvcc --version
form the version gate.
- A
samples/, bindings/, or reference/ 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.md first to confirm the user's question is
in scope.
- For the GPUNetIO capability matrix, the
doca_gpu per-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 compatibility cross-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 canonical pkg-config + meson build pattern, the
universal modify-a-shipped-sample first-app workflow, the
universal lifecycle, the cross-library DOCA_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_peermem missing, 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. For the underlying queue setup,
route to doca-eth.
1---2name: doca-gpunetio3description: 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.4license: Apache-2.05---67# DOCA GPUNetIO89**Where to start:** This skill assumes DOCA is already installed,10the CUDA toolkit is installed and matched to the DOCA install, and11the user is doing **hands-on GPUNetIO work** — i.e. wiring a DOCA12network queue into a CUDA kernel on an NVIDIA GPU. Open13[`TASKS.md`](TASKS.md) if the user wants to *do* something14(configure / build / modify / run / test / debug); open15[`CAPABILITIES.md`](CAPABILITIES.md) when the question is *what16can GPUNetIO express* on this version + this GPU. If the user has17not installed DOCA yet, route to18[`doca-setup`](../../doca-setup/SKILL.md) first; if the user has19not set up the underlying Ethernet RX/TX queues yet, that is a20DOCA Ethernet question — route to21[`doca-eth`](../doca-eth/SKILL.md).2223## Example questions this skill answers well2425The CLASSES of GPUNetIO questions this skill is built to answer,26each with one worked example. The agent should treat the *class*27as the load-bearing piece — the worked example is a single28instance.2930- **"How do I get a CUDA kernel to receive packets directly from31 the NIC?"** — worked example: *"persistent kernel on one GPU32 reads packets from a `doca_gpu_eth_rxq` built on top of a33 representor `doca_eth_rxq` and counts them per-flow"*. Answered34 by the persistent-kernel pattern in35 [`CAPABILITIES.md ## Capabilities and modes`](CAPABILITIES.md#capabilities-and-modes)36 + the GPU-side bring-up workflow in37 [`TASKS.md ## configure`](TASKS.md#configure).38- **"Can I run GPUNetIO on this GPU?"** — worked example: *"my39 host has one Ampere card and one Turing card; which one40 supports GPU-initiated networking?"*. Answered by the dual41 capability-discovery rule (DOCA cap-query AND42 `cudaGetDeviceProperties` against the CUDA device ordinal) in43 [`CAPABILITIES.md ## Capabilities and modes`](CAPABILITIES.md#capabilities-and-modes)44 + the device-enumeration step in45 [`TASKS.md ## configure`](TASKS.md#configure).46- **"Why does my GPUNetIO setup fail with47 `DOCA_ERROR_NOT_SUPPORTED` even though doca-eth came up48 fine?"** — worked example: *"`nvidia_peermem` is not loaded so49 GPUDirect RDMA is unavailable"*. Answered by the env preconditions50 in [`CAPABILITIES.md ## Safety policy`](CAPABILITIES.md#safety-policy)51 + the env checklist in52 [`TASKS.md ## configure`](TASKS.md#configure) step 1.53- **"How do I move data between CUDA-allocated buffers and a DOCA54 queue?"** — worked example: *"use `cudaMalloc` for the receive55 buffer pool and register it with DOCA via `doca_buf_arr_create_*`56 before starting the context"*. Answered by the CUDA-allocator57 + DOCA-registration overlay in58 [`CAPABILITIES.md ## Safety policy`](CAPABILITIES.md#safety-policy)59 + the buffer-prep step in60 [`TASKS.md ## configure`](TASKS.md#configure) step 4.61- **"Is the GPUNetIO API I'm reading about on my installed DOCA +62 CUDA combination?"** — worked example: *"is the persistent-kernel63 helper available with the CUDA toolkit version I have?"*.64 Answered by the version-compatibility overlay in65 [`CAPABILITIES.md ## Version compatibility`](CAPABILITIES.md#version-compatibility)66 which cross-links the canonical detection chain in67 [`doca-version`](../../doca-version/SKILL.md) and adds the68 GPUNetIO-specific *DOCA must match CUDA* overlay.69- **"What does this `DOCA_ERROR_*` from a GPUNetIO call mean and70 which layer caused it?"** — worked example: *"`DOCA_ERROR_DRIVER`71 on `doca_gpu_*_create` — is it DOCA, CUDA, or the underlying72 doca-eth queue?"*. Answered by the GPUNetIO overlay on the73 cross-library taxonomy in74 [`CAPABILITIES.md ## Error taxonomy`](CAPABILITIES.md#error-taxonomy)75 + the layered ladder in76 [`TASKS.md ## debug`](TASKS.md#debug) that escalates to77 [`doca-debug`](../../doca-debug/SKILL.md).7879## Audience8081This skill serves **external developers building applications82that consume the DOCA GPUNetIO library** — i.e., users whose code83calls `doca_gpu_*` from host C/C++ to stand up the per-GPU84context and the GPU-visible queue handles, and whose CUDA kernel85(`.cu` translation unit) uses those handles from device code to86submit / receive packets. The canonical target shape is the GPU87Packet Processing reference application: a CUDA persistent88kernel on an NVIDIA GPU that polls a GPU-visible RX queue and89processes packets in-place on the GPU. It is *not* for NVIDIA90developers contributing to DOCA GPUNetIO itself.9192**Language scope.** DOCA GPUNetIO ships as a C / CUDA library93with `pkg-config` module name `doca-gpunetio`. The host-side API94is C; the device-side API is CUDA C++ used inside a `.cu`95kernel. The shipped samples and the GPU Packet Processing96reference application are written in C + CUDA C++ (NVIDIA's97choice). Other-language consumers are limited in practice — the98device-side API has no FFI escape hatch because the kernel must99be a CUDA translation unit — but a Rust / Go / Python host-side100wrapper that drives the host-side `doca_gpu_*` setup and101launches a CUDA kernel built separately is still useful, and the102skill keeps the lifecycle, capability-discovery, env-precondition,103and error-taxonomy guidance language-neutral.104105## When to load this skill106107Load this skill when the user is doing hands-on DOCA GPUNetIO108work, in any host language plus CUDA. Concretely:109110- Initializing a `doca_gpu` against a specific CUDA device111 ordinal on a host with one or more NVIDIA GPUs.112- Creating a GPU-visible queue handle (`doca_gpu_eth_rxq`,113 `doca_gpu_eth_txq`) on top of an existing `doca_eth_rxq` /114 `doca_eth_txq` from DOCA Ethernet, and passing the handle into115 a CUDA kernel for device-side use.116- Writing or modifying the persistent CUDA kernel that drains117 the GPU-visible RX queue in a long-running loop (the canonical118 GPU Packet Processing shape).119- Allocating GPU buffers via `cudaMalloc` and registering them120 with DOCA via the `doca_buf_arr_create_*` family before121 `doca_ctx_start()`.122- Checking which GPUNetIO features are supported on the active123 `doca_devinfo` (DOCA cap-query family) AND on the candidate124 CUDA device (`cudaGetDeviceProperties` and CUDA-driver-version125 checks).126- Debugging a `DOCA_ERROR_*` returned from a GPUNetIO call — in127 particular disambiguating *DOCA capability missing* from *CUDA128 device too old* from *`nvidia_peermem` not loaded* from *CUDA129 driver + DOCA version skew*.130- Designing host-side bindings for non-C languages that drive a131 CUDA kernel they built separately — the env-precondition and132 capability-discovery rules in this skill still apply.133134Do **not** load this skill for general DOCA orientation, install135of DOCA or the CUDA toolkit, the underlying DOCA Ethernet queue136setup, or non-GPUNetIO library questions. For those, route137through [`doca-public-knowledge-map`](../../doca-public-knowledge-map/SKILL.md)138to the matching upstream guide.139140## What this skill provides141142This is a **thin loader**. The body keeps only the orientation143needed to pick the right next file. The substantive144GPUNetIO-specific material lives in two companion files:145146- `CAPABILITIES.md` — what GPUNetIO can express on this version147 + this GPU: the `doca_gpu` per-device context, the GPU-visible148 RX / TX queue handles layered on doca-eth, the persistent149 CUDA-kernel pattern as the default usage shape, the150 capability-query surface (the doca-eth151 `doca_eth_rxq_cap_is_type_supported` / `doca_eth_rxq_cap_get_*`152 family in `doca_eth_rxq.h`, plus the matching153 `doca_eth_txq_cap_*` family, on the DOCA side, plus154 `cudaGetDeviceProperties` on the CUDA side), the GPUNetIO error taxonomy mapped onto the cross-library155 `DOCA_ERROR_*` set, the observability surface (CUDA-side156 counters + DOCA-side per-task completion), and the safety157 policy that gates env preconditions (CUDA + DOCA version158 match, `nvidia_peermem`, CUDA buffer registration).159- `TASKS.md` — step-by-step workflows for the six in-scope160 GPUNetIO verbs: `configure`, `build`, `modify`, `run`, `test`,161 `debug`. Plus a `## rollback` overlay (GPUNetIO-specific162 five-step teardown that signals the persistent kernel to163 drain, unregisters GPU buffers in reverse-register order, and164 leaves the parent doca-eth queue intact) and the 5-phase165 universal debug-loop instantiation appended to `## debug`.166 Plus a `Deferred task verbs` block that points out-of-scope167 questions at the right next skill.168169The skill assumes a host where DOCA is already installed at the170standard location, an NVIDIA GPU is physically present, the CUDA171toolkit is installed and its version is matched to the DOCA172install per the DOCA Compatibility Policy, and the underlying173DOCA Ethernet RX/TX queues are *already* configured (this skill174sits on top of doca-eth, not below it). It does not cover175installing DOCA or the CUDA toolkit — that path goes through176[`doca-setup`](../../doca-setup/SKILL.md).177178## What this skill deliberately does not ship179180This skill is **agent guidance**, not a samples or templates181bundle. To keep the boundary clean, it deliberately does not182contain — and pull requests should not add:183184- **Pre-written DOCA GPUNetIO application source code or CUDA185 kernel source, in any language.** The verified GPUNetIO186 source is the shipped C + CUDA samples at187 `/opt/mellanox/doca/samples/doca_gpunetio/` and the GPU Packet188 Processing reference application. The agent's job is to route189 the user to those files and prescribe a minimum-diff190 modification on them via the universal modify-a-sample191 workflow in192 [`doca-programming-guide`](../../doca-programming-guide/SKILL.md),193 layered with the GPUNetIO-specific overrides in194 [`TASKS.md ## modify`](TASKS.md#modify).195- **Standalone build manifests** (`meson.build`,196 `CMakeLists.txt`, …) parked inside the skill. The agent197 constructs the build manifest *in the user's project198 directory* against the user's installed DOCA + CUDA toolkit,199 where `pkg-config --modversion doca-gpunetio`,200 `pkg-config --modversion doca-common`, and `nvcc --version`201 form the version gate.202- **A `samples/`, `bindings/`, or `reference/` subtree** of any203 kind. A mock or incomplete artifact in this skill's tree, even204 one labeled "reference", is misleading: users will read it as205 buildable.206207## Loading order2082091. Read this `SKILL.md` first to confirm the user's question is210 in scope.2112. **For the GPUNetIO capability matrix, the `doca_gpu` per-device212 context, the persistent-kernel pattern, the dual capability213 query, the env-precondition policy, the error taxonomy, the214 observability surface, and the safety policy, see215 [CAPABILITIES.md](CAPABILITIES.md).**2163. **For step-by-step workflows — configure, build, modify, run,217 test, debug — see [TASKS.md](TASKS.md).**218219Both companion files cross-link to each other,220[`doca-version`](../../doca-version/SKILL.md) for the canonical221DOCA version-handling rules (with the GPUNetIO overlay that DOCA222must match CUDA), and223[`doca-public-knowledge-map`](../../doca-public-knowledge-map/SKILL.md)224whenever the right answer is "look it up in the public DOCA225GPUNetIO guide, the DOCA Compatibility Policy, the CUDA toolkit226docs, or the on-disk install layout" rather than227"GPUNetIO-specific guidance".228229## Related skills230231- [`doca-public-knowledge-map`](../../doca-public-knowledge-map/SKILL.md) —232 the routing table for every public DOCA documentation source233 and the on-disk layout of an installed DOCA package. The234 GPUNetIO public guide is at235 <https://docs.nvidia.com/doca/sdk/DOCA-GPUNetIO/index.html>;236 the GPU Packet Processing reference application is reachable237 from there. The CUDA toolkit and DOCA Compatibility Policy238 links live in the same routing table.239- [`doca-setup`](../../doca-setup/SKILL.md) — env preparation,240 install verification, CUDA toolkit install / verification, and241 the *I have no install yet* path with the public NGC DOCA242 container. This skill assumes its preconditions are satisfied243 AND that CUDA is installed at a version that matches DOCA.244- [`doca-version`](../../doca-version/SKILL.md) — canonical DOCA245 version-handling rules. This skill's `## Version246 compatibility` cross-links the four-way match rule and adds247 the GPUNetIO-specific *DOCA-and-CUDA must match* overlay per248 the DOCA Compatibility Policy.249- [`doca-structured-tools-contract`](../../doca-structured-tools-contract/SKILL.md) —250 the bundle's structured-tools precedence rule (detect / prefer251 / fall back / report). The Command appendix in252 [TASKS.md](TASKS.md) honors this contract.253- [`doca-programming-guide`](../../doca-programming-guide/SKILL.md) —254 general DOCA programming patterns shared by every library:255 the canonical `pkg-config` + meson build pattern, the256 universal modify-a-shipped-sample first-app workflow, the257 universal lifecycle, the cross-library `DOCA_ERROR_*`258 taxonomy, and the program-side debug order. This skill259 layers GPUNetIO specifics on top.260- [`doca-debug`](../../doca-debug/SKILL.md) — the cross-cutting261 debug ladder (install / version / build / link / runtime /262 program / driver). GPUNetIO-specific debug (CUDA + DOCA263 version skew, `nvidia_peermem` missing, persistent-kernel264 silent hangs, CUDA-allocator + DOCA-registration mismatches)265 overlays on top of that ladder.266267DOCA Ethernet is GPUNetIO's mandatory companion library: GPU-visible268RX / TX queue handles are layered on top of `doca_eth_rxq` /269`doca_eth_txq` from DOCA Ethernet. For the underlying queue setup,270route to [`doca-eth`](../doca-eth/SKILL.md).271