-
Notifications
You must be signed in to change notification settings - Fork 8
#17 - Add RTX PRO 6000 benchmark YAMLs and baseline #162
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
chloecrozier
wants to merge
9
commits into
main
Choose a base branch
from
ccrozier-rtx-pro-6000-bench
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+3,329
−14
Open
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
d588003
#17 - Add RTX PRO 6000 benchmark YAMLs and baseline
chloecrozier 694e527
#17 - Doc sync and YAML fixes for RTX PRO 6000 benchmarks
chloecrozier ad58d11
#17 - Port RTX PRO 6000 benchmark runner
chloecrozier 9f01b73
#17 - Fix RTX PRO 6000 wire benchmarks and add core-scaling sweep
chloecrozier aeea03e
Merge remote-tracking branch 'origin/main' into ccrozier-rtx-pro-6000…
chloecrozier 84a2b3d
#17 - Add RTX PRO 6000 configs to docs decision tree
chloecrozier ef9bcc6
Merge branch 'main' into ccrozier-rtx-pro-6000-bench (take main bench…
chloecrozier ac8acc2
#17 - Auto-discover RTX PRO GPU/CPU affinity for wire benchmarks
chloecrozier f18c875
#17 - Fix ibverbs catch-all flow steering on mlx5
chloecrozier File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,54 @@ | ||
| # RTX PRO 6000 Blackwell -- ibverbs MPRQ RX-only (host-staged). | ||
| # | ||
| # Selected via `engine: "ibverbs"` under `stream_type: "raw"`. Uses HOST hugepage | ||
| # memory (GPUDirect device registration is not yet available on this backend). | ||
| # FFT/GEMM workloads therefore include host->device staging cost -- label results | ||
| # as `host-staged` when comparing against DPDK HDS. | ||
| # | ||
| # RX-only: pair with a DPDK TX sender (run_rtx_pro_bench.sh ibverbs mode starts | ||
| # daqiri_bench_raw_gpudirect on tx_port in the background). | ||
| # | ||
| # Run (manual): | ||
| # sudo ./build/examples/daqiri_bench_raw_gpudirect \ | ||
| # ./build/examples/daqiri_bench_raw_tx_rx_rtx_pro_6000_nic.yaml --seconds 30 & | ||
| # sudo ./build/examples/daqiri_bench_raw_gpudirect \ | ||
| # ./build/examples/daqiri_bench_raw_rx_ibverbs_rtx_pro_6000.yaml \ | ||
| # --seconds 30 --workload fft | ||
| # | ||
| %YAML 1.2 | ||
| --- | ||
| daqiri: | ||
| cfg: | ||
| version: 1 | ||
| stream_type: "raw" | ||
| engine: "ibverbs" | ||
| master_core: 3 | ||
| debug: false | ||
| log_level: "info" | ||
| loopback: "" | ||
|
|
||
| # affinity is the NUMA node for the huge-page RX region. Keep it on the RX | ||
| # port's node (discover with: cat /sys/class/net/<rx-iface>/device/numa_node). | ||
| memory_regions: | ||
| - name: "Data_RX_HOST" | ||
| kind: "huge" | ||
| affinity: 0 | ||
| num_bufs: 4096 | ||
| buf_size: 8064 | ||
|
|
||
| interfaces: | ||
| - name: "rx_port" | ||
| address: 0000:61:00.1 | ||
| rx: | ||
| queues: | ||
| - name: "rx_q_0" | ||
| id: 0 | ||
| cpu_core: 9 | ||
| batch_size: 1024 | ||
| timeout_us: 2000 | ||
| memory_regions: | ||
| - "Data_RX_HOST" | ||
|
|
||
| bench_rx: | ||
| interface_name: "rx_port" | ||
| cpu_core: 8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,77 @@ | ||
| # RTX PRO 6000 Blackwell (discrete dGPU) software-loopback smoke test. | ||
| # No NIC or cable required — validates build + GPUDirect on one GPU. | ||
| # Not representative of wire-speed performance; use the hardware template | ||
| # (daqiri_bench_raw_tx_rx_rtx_pro_6000.yaml) once a QSFP loopback cable is installed. | ||
| # | ||
| # Build (native sm_120): | ||
| # cmake -S . -B build -DBUILD_SHARED_LIBS=ON -DDAQIRI_BUILD_PYTHON=OFF \ | ||
| # -DDAQIRI_ENGINE="dpdk ibverbs" -DCMAKE_CUDA_ARCHITECTURES=120 | ||
| # cmake --build build -j | ||
| # | ||
| # Run: | ||
| # ./build/examples/daqiri_bench_raw_gpudirect \ | ||
| # ./build/examples/daqiri_bench_raw_sw_loopback_rtx_pro_6000.yaml --seconds 30 | ||
| # | ||
| # memory_regions[].affinity is the CUDA device index (not nvidia-smi GPU id). | ||
| # Change affinity to target a different GPU, e.g. affinity: 1 for CUDA device 1. | ||
| # | ||
| %YAML 1.2 | ||
| --- | ||
| daqiri: | ||
| cfg: | ||
| version: 1 | ||
| stream_type: "raw" | ||
| master_core: 3 | ||
| debug: false | ||
| log_level: "info" | ||
| loopback: "sw" | ||
|
|
||
| memory_regions: | ||
| - name: "Data_TX_GPU" | ||
| kind: "device" | ||
| affinity: 0 | ||
| num_bufs: 51200 | ||
| buf_size: 8064 | ||
| - name: "Data_RX_GPU" | ||
| kind: "device" | ||
| affinity: 0 | ||
| num_bufs: 51200 | ||
| buf_size: 8064 | ||
|
|
||
| interfaces: | ||
| - name: "loopback_ports" | ||
| address: "loopback" | ||
| tx: | ||
| queues: | ||
| - name: "tx_q_0" | ||
| id: 0 | ||
| batch_size: 10240 | ||
| cpu_core: 11 | ||
| timeout_us: 1000 | ||
| memory_regions: | ||
| - "Data_TX_GPU" | ||
| offloads: | ||
| - "tx_eth_src" | ||
| rx: | ||
| queues: | ||
| - name: "rq_q_0" | ||
| id: 0 | ||
| cpu_core: 9 | ||
| timeout_us: 1000 | ||
| batch_size: 10240 | ||
| memory_regions: | ||
| - "Data_RX_GPU" | ||
|
|
||
| bench_rx: | ||
| interface_name: "loopback_ports" | ||
|
|
||
| bench_tx: | ||
| interface_name: "loopback_ports" | ||
| batch_size: 10240 | ||
| payload_size: 8000 | ||
| header_size: 64 | ||
| eth_dst_addr: 00:00:00:00:00:00 | ||
| ip_src_addr: 0.0.0.0 | ||
| ip_dst_addr: 0.0.0.0 | ||
| udp_src_port: 4096 | ||
| udp_dst_port: 4096 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| # RTX PRO 6000 -- DPDK GPUDirect TX-only sender for ibverbs RX pairing. | ||
| # Binds a single TX port; the RX port stays kernel-bound for ibverbs MPRQ. | ||
| # | ||
| %YAML 1.2 | ||
| --- | ||
| daqiri: | ||
| cfg: | ||
| version: 1 | ||
| stream_type: "raw" | ||
| master_core: 3 | ||
| debug: false | ||
| log_level: "info" | ||
| loopback: "" | ||
|
|
||
| memory_regions: | ||
| - name: "Data_TX_GPU" | ||
| kind: "device" | ||
| affinity: 0 | ||
| num_bufs: 51200 | ||
| buf_size: 8064 | ||
|
|
||
| interfaces: | ||
| - name: "tx_port" | ||
| address: 0000:61:00.0 | ||
| tx: | ||
| queues: | ||
| - name: "tx_q_0" | ||
| id: 0 | ||
| batch_size: 10240 | ||
| cpu_core: 11 | ||
| memory_regions: | ||
| - "Data_TX_GPU" | ||
| offloads: | ||
| - "tx_eth_src" | ||
|
|
||
| bench_tx: | ||
| interface_name: "tx_port" | ||
| cpu_core: 10 | ||
| batch_size: 10240 | ||
| payload_size: 8000 | ||
| header_size: 64 | ||
| eth_dst_addr: <00:00:00:00:00:00> | ||
| ip_src_addr: 1.2.3.4 | ||
| ip_dst_addr: 5.6.7.8 | ||
| udp_src_port: 4096 | ||
| udp_dst_port: 4096 |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.