From 87bc18df00784a63e70138d89356518baa98f03b Mon Sep 17 00:00:00 2001 From: adibbley Date: Fri, 19 Jan 2024 11:31:07 -0500 Subject: [PATCH 1/3] Update for CUDA 12.3.2 --- recipe/meta.yaml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 132d09b..7db017a 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,4 +1,4 @@ -{% set version = "12.2.2" %} +{% set version = "12.3.2" %} package: name: cuda-libraries @@ -14,18 +14,18 @@ build: requirements: run: - - cuda-cudart 12.2.140 - - cuda-nvrtc 12.2.140 - - cuda-opencl 12.2.140 # [linux64 or win] - - libcublas 12.2.5.6 - - libcufft 11.0.8.103 - - libcufile 1.7.2.10 # [linux64 or aarch64] - - libcurand 10.3.3.141 - - libcusolver 11.5.2.141 - - libcusparse 12.1.2.141 - - libnpp 12.2.1.4 - - libnvjitlink 12.2.140 - - libnvjpeg 12.2.2.4 + - cuda-cudart 12.3.101 + - cuda-nvrtc 12.3.107 + - cuda-opencl 12.3.101 # [linux64 or win] + - libcublas 12.3.4.1 + - libcufft 11.0.12.1 + - libcufile 1.8.1.2 # [linux64 or aarch64] + - libcurand 10.3.4.107 + - libcusolver 11.5.4.101 + - libcusparse 12.2.0.103 + - libnpp 12.2.3.2 + - libnvjitlink 12.3.101 + - libnvjpeg 12.3.0.81 test: commands: From b1a6d4d37f80d7a1200a1590d930990e7bbf206c Mon Sep 17 00:00:00 2001 From: jakirkham Date: Wed, 24 Jan 2024 20:13:47 -0800 Subject: [PATCH 2/3] Align selectors --- recipe/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 7db017a..dd77209 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -16,10 +16,10 @@ requirements: run: - cuda-cudart 12.3.101 - cuda-nvrtc 12.3.107 - - cuda-opencl 12.3.101 # [linux64 or win] + - cuda-opencl 12.3.101 # [linux64 or win] - libcublas 12.3.4.1 - libcufft 11.0.12.1 - - libcufile 1.8.1.2 # [linux64 or aarch64] + - libcufile 1.8.1.2 # [linux64 or aarch64] - libcurand 10.3.4.107 - libcusolver 11.5.4.101 - libcusparse 12.2.0.103 From 3b1f30f51a52683c225b1a33f4f504c4bc3e82d3 Mon Sep 17 00:00:00 2001 From: "conda-forge-webservices[bot]" <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Date: Thu, 25 Jan 2024 04:16:46 +0000 Subject: [PATCH 3/3] MNT: Re-rendered with conda-build 3.28.4, conda-smithy 3.30.4, and conda-forge-pinning 2024.01.24.23.41.29 --- .gitignore | 25 +++++++++++++++++++++++-- .scripts/build_steps.sh | 6 ------ .scripts/run_docker_build.sh | 6 ++++++ 3 files changed, 29 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index c89ecb7..179afe5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,24 @@ -*.pyc +# User content belongs under recipe/. +# Feedstock configuration goes in `conda-forge.yml` +# Everything else is managed by the conda-smithy rerender process. +# Please do not modify + +# Ignore all files and folders in root +* +!/conda-forge.yml + +# Don't ignore any files/folders if the parent folder is 'un-ignored' +# This also avoids warnings when adding an already-checked file with an ignored parent. +!/**/ +# Don't ignore any files/folders recursively in the following folders +!/recipe/** +!/.ci_support/** -build_artifacts +# Since we ignore files/folders recursively, any folders inside +# build_artifacts gets ignored which trips some build systems. +# To avoid that we 'un-ignore' all files/folders recursively +# and only ignore the root build_artifacts folder. +!/build_artifacts/** +/build_artifacts + +*.pyc diff --git a/.scripts/build_steps.sh b/.scripts/build_steps.sh index 5382195..f017291 100755 --- a/.scripts/build_steps.sh +++ b/.scripts/build_steps.sh @@ -54,12 +54,6 @@ if [[ -f "${FEEDSTOCK_ROOT}/LICENSE.txt" ]]; then cp "${FEEDSTOCK_ROOT}/LICENSE.txt" "${RECIPE_ROOT}/recipe-scripts-license.txt" fi -if [[ "${sha:-}" == "" ]]; then - pushd ${FEEDSTOCK_ROOT} - sha=$(git rev-parse HEAD) - popd -fi - if [[ "${BUILD_WITH_CONDA_DEBUG:-0}" == 1 ]]; then if [[ "x${BUILD_OUTPUT_ID:-}" != "x" ]]; then EXTRA_CB_OPTIONS="${EXTRA_CB_OPTIONS:-} --output-id ${BUILD_OUTPUT_ID}" diff --git a/.scripts/run_docker_build.sh b/.scripts/run_docker_build.sh index b70ef01..00f377a 100755 --- a/.scripts/run_docker_build.sh +++ b/.scripts/run_docker_build.sh @@ -21,6 +21,12 @@ if [ -z ${FEEDSTOCK_NAME} ]; then export FEEDSTOCK_NAME=$(basename ${FEEDSTOCK_ROOT}) fi +if [[ "${sha:-}" == "" ]]; then + pushd "${FEEDSTOCK_ROOT}" + sha=$(git rev-parse HEAD) + popd +fi + docker info # In order for the conda-build process in the container to write to the mounted