Skip to content

Commit b5b4232

Browse files
authored
Fix CUDA 13 handling of libcufile on aarch64 (#827)
Fixes an issue where CUDA 13 packages named like `linux-aarch64/libkvikio-25.10.00a43-cuda13_0_250916_b69d9aea.conda` were getting dependencies on `cuda-version >=12.2.0a0,<14.0a0`, which allowed them to be used in CUDA 12 environments. That is not desired and could cause problems. Authors: - Bradley Dice (https://github.com/bdice) Approvers: - James Lamb (https://github.com/jameslamb) - Mads R. B. Kristensen (https://github.com/madsbk) URL: #827
1 parent b69d9ae commit b5b4232

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conda/recipes/libkvikio/recipe.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ outputs:
9393
- cuda-version =${{ cuda_version }}
9494
- libcurl ==${{ libcurl_version }}
9595
run:
96-
- if: x86_64
96+
- if: x86_64 or (aarch64 and cuda_version >= "13.0")
9797
then:
9898
- ${{ pin_compatible("cuda-version", upper_bound="x", lower_bound="x") }}
9999
else:

0 commit comments

Comments
 (0)