Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .gitlab/test_nixlbench.sh
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,14 @@ for op_type in READ WRITE; do
done
done

if $HAS_GPU ; then
for op_type in WRITE READ; do
for initiator in $seg_types; do
for target in $seg_types; do
run_nixlbench_two_workers --backend GPUNETIO --device_list=mlx5_0 --gpunetio_oob_list=lo --op_type $op_type --initiator_seg_type $initiator --target_seg_type $target
done
done
done
fi

pkill etcd
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ if cuda_dep.found()
nvcc_flags_link += ['-gencode=arch=compute_90,code=sm_90']
add_project_link_arguments(nvcc_flags_link, language: 'cuda')
message('nvcc version: ' + nvcc.version())
if nvcc.version().version_compare('>=12.8') and nvcc.version().version_compare('<13.0')
if nvcc.version().version_compare('>=12.8')
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do we already have doca with cuda13 support in our env?

doca_gpunetio_dep = dependency('doca-gpunetio', required : false)
else
warning('GPUNETIO plugin not supported in CUDA version: ' + nvcc.version())
Expand All @@ -131,7 +131,7 @@ endif
if cuda_dep.found()
nvcc_cmd = find_program('nvcc', required: false)
if nvcc_cmd.found()
if nvcc_cmd.version().version_compare('>=12.8') and nvcc_cmd.version().version_compare('<13.0')
if nvcc_cmd.version().version_compare('>=12.8')
doca_gpunetio_dep = dependency('doca-gpunetio', required : false)
else
warning('CUDA version = ' + nvcc_cmd.version() + ', GPUNETIO plugin will be disabled')
Expand Down