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
4 changes: 4 additions & 0 deletions ci/build_cpp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ sccache --zero-stats
RAPIDS_PACKAGE_VERSION=$(rapids-generate-version)
export RAPIDS_PACKAGE_VERSION

RAPIDS_ARTIFACTS_DIR=${RAPIDS_ARTIFACTS_DIR:-"${PWD}/artifacts"}
mkdir -p "${RAPIDS_ARTIFACTS_DIR}"
export RAPIDS_ARTIFACTS_DIR

# populates `RATTLER_CHANNELS` array and `RATTLER_ARGS` array
source rapids-rattler-channel-string

Expand Down
12 changes: 9 additions & 3 deletions conda/recipes/libkvikio/recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ cache:
host:
- cuda-version =${{ cuda_version }}
- libcurl ${{ libcurl_version }}
- libcufile-dev
- if: (linux and x86_64) or (linux and aarch64 and cuda_version >= "12.2")
then:
- libcufile-dev
- libnuma

outputs:
Expand All @@ -85,7 +87,9 @@ outputs:
- libcurl ${{ libcurl_version }}
run:
- ${{ pin_compatible("cuda-version", upper_bound="x", lower_bound="x") }}
- libcufile-dev
- if: linux and x86_64
then:
- libcufile-dev
ignore_run_exports:
by_name:
- cuda-version
Expand Down Expand Up @@ -117,7 +121,9 @@ outputs:
- ${{ pin_subpackage("libkvikio", exact=True) }}
- cuda-version =${{ cuda_version }}
- cuda-cudart-dev
- libcufile-dev
- if: linux and x86_64
then:
- libcufile-dev
run:
- ${{ pin_compatible("cuda-version", upper_bound="x", lower_bound="x") }}
- cuda-cudart
Expand Down