From c45b5c4f5c2caa9f72582e2e7fec896216586acf Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Tue, 25 Jul 2023 11:50:20 -0500 Subject: [PATCH] Add nvcomp support to older CUDA 11 versions on aarch64. (#255) Nightly CI runs are failing for CUDA 11.4 on ARM because the `cudatoolkit` package list does not specify a matrix entry for CUDA 11.4 on ARM for `nvcomp`. This adds the missing matrix entries for supported CUDA 11 versions. See failure below: ``` ValueError: No matching matrix found in 'cudatoolkit' for: {'cuda': '11.4', 'arch': 'aarch64'} ``` https://github.com/rapidsai/kvikio/actions/runs/5652999609/job/15313480885 Authors: - Bradley Dice (https://github.com/bdice) Approvers: - Vyas Ramasubramani (https://github.com/vyasr) URL: https://github.com/rapidsai/kvikio/pull/255 --- dependencies.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/dependencies.yaml b/dependencies.yaml index 26741d6a1f..270a228aae 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -217,6 +217,21 @@ dependencies: cuda: "11.8" packages: - *nvcomp + - matrix: + arch: aarch64 + cuda: "11.5" + packages: + - *nvcomp + - matrix: + arch: aarch64 + cuda: "11.4" + packages: + - *nvcomp + - matrix: + arch: aarch64 + cuda: "11.2" + packages: + - *nvcomp docs: common: - output_types: [conda, requirements]