Skip to content
Merged
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
2 changes: 1 addition & 1 deletion ci/build_wheel_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export SKBUILD_CMAKE_ARGS="-DUSE_NVCOMP_RUNTIME_WHEEL=ON"

python -m auditwheel repair \
--exclude libkvikio.so \
--exclude libnvcomp.so.4 \
--exclude libnvcomp.so.5 \
-w "${RAPIDS_WHEEL_BLD_OUTPUT_DIR}" \
${package_dir}/dist/*

Expand Down
2 changes: 1 addition & 1 deletion python/libkvikio/cmake/thirdparty/get_nvcomp.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function(find_and_configure_nvcomp)
include(${rapids-cmake-dir}/cpm/nvcomp.cmake)
set(export_args)
if(KvikIO_EXPORT_NVCOMP)
# We're vendoring nvcomp and we only want `libnvcomp.so.4`
# We're vendoring nvcomp and we only want `libnvcomp.so.5`
set(export_args BUILD_EXPORT_SET nvcomp INSTALL_EXPORT_SET nvcomp)
endif()

Expand Down
2 changes: 1 addition & 1 deletion python/libkvikio/libkvikio/load.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def load_library():
# TODO: remove this nvcomp load when `nvcomp` is vendored into cudf instead.
# Currently this load only exists to ensure that libcudf wheels are not broken by
# prematurely removing the load
_load_library("libnvcomp.so.4")
_load_library("libnvcomp.so.5")
return _load_library("libkvikio.so")


Expand Down