From c8cc00fa1a6c7ed057dc9058f81207b3d262bbd7 Mon Sep 17 00:00:00 2001 From: shaowei su Date: Fri, 7 Jun 2024 11:37:11 -0700 Subject: [PATCH 1/3] add missing cuda libs --- recipe/meta.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 8e2cf3d..cd0bb5d 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -91,6 +91,13 @@ requirements: - python - pytorch # [cuda_compiler_version in (undefined, 'None')] - tqdm + {% if cuda_major >= 12 %} + - cuda-compiler + - cuda-cudart-dev + - libcusparse-dev + - libcublas-dev + - libcusolver-dev + {% endif %} run_constrained: # 2022/02/05 hmaarrfk # While conda packaging seems to allow us to specify From 6e1adf6f72f90f4bcc8e45bbf7c9db005f62b5cf Mon Sep 17 00:00:00 2001 From: "conda-forge-webservices[bot]" <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Date: Fri, 7 Jun 2024 18:52:31 +0000 Subject: [PATCH 2/3] MNT: Re-rendered with conda-build 24.5.1, conda-smithy 3.36.1, and conda-forge-pinning 2024.06.07.18.45.09 --- .ci_support/osx_arm64_python3.10.____cpython.yaml | 2 ++ .ci_support/osx_arm64_python3.11.____cpython.yaml | 2 ++ .ci_support/osx_arm64_python3.12.____cpython.yaml | 2 ++ .ci_support/osx_arm64_python3.8.____cpython.yaml | 2 ++ .ci_support/osx_arm64_python3.9.____cpython.yaml | 2 ++ .gitattributes | 4 ++-- 6 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.ci_support/osx_arm64_python3.10.____cpython.yaml b/.ci_support/osx_arm64_python3.10.____cpython.yaml index bebcfe0..46d6193 100644 --- a/.ci_support/osx_arm64_python3.10.____cpython.yaml +++ b/.ci_support/osx_arm64_python3.10.____cpython.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '11.0' +MACOSX_SDK_VERSION: +- '11.0' c_compiler: - clang c_compiler_version: diff --git a/.ci_support/osx_arm64_python3.11.____cpython.yaml b/.ci_support/osx_arm64_python3.11.____cpython.yaml index ee13622..5cf6bfc 100644 --- a/.ci_support/osx_arm64_python3.11.____cpython.yaml +++ b/.ci_support/osx_arm64_python3.11.____cpython.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '11.0' +MACOSX_SDK_VERSION: +- '11.0' c_compiler: - clang c_compiler_version: diff --git a/.ci_support/osx_arm64_python3.12.____cpython.yaml b/.ci_support/osx_arm64_python3.12.____cpython.yaml index 9f061a4..f5f91e3 100644 --- a/.ci_support/osx_arm64_python3.12.____cpython.yaml +++ b/.ci_support/osx_arm64_python3.12.____cpython.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '11.0' +MACOSX_SDK_VERSION: +- '11.0' c_compiler: - clang c_compiler_version: diff --git a/.ci_support/osx_arm64_python3.8.____cpython.yaml b/.ci_support/osx_arm64_python3.8.____cpython.yaml index 1099e8f..9ddfbd1 100644 --- a/.ci_support/osx_arm64_python3.8.____cpython.yaml +++ b/.ci_support/osx_arm64_python3.8.____cpython.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '11.0' +MACOSX_SDK_VERSION: +- '11.0' c_compiler: - clang c_compiler_version: diff --git a/.ci_support/osx_arm64_python3.9.____cpython.yaml b/.ci_support/osx_arm64_python3.9.____cpython.yaml index 102d236..c3048a8 100644 --- a/.ci_support/osx_arm64_python3.9.____cpython.yaml +++ b/.ci_support/osx_arm64_python3.9.____cpython.yaml @@ -1,5 +1,7 @@ MACOSX_DEPLOYMENT_TARGET: - '11.0' +MACOSX_SDK_VERSION: +- '11.0' c_compiler: - clang c_compiler_version: diff --git a/.gitattributes b/.gitattributes index 7f32763..18f114a 100644 --- a/.gitattributes +++ b/.gitattributes @@ -20,8 +20,8 @@ bld.bat text eol=crlf .travis.yml linguist-generated=true .scripts/* linguist-generated=true .woodpecker.yml linguist-generated=true -LICENSE.txt linguist-generated=true -README.md linguist-generated=true +/LICENSE.txt linguist-generated=true +/README.md linguist-generated=true azure-pipelines.yml linguist-generated=true build-locally.py linguist-generated=true shippable.yml linguist-generated=true From 2963413be0bd8fe894eff17b167dd5818937ba0d Mon Sep 17 00:00:00 2001 From: shaowei su Date: Fri, 7 Jun 2024 22:08:54 -0700 Subject: [PATCH 3/3] build number --- recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index cd0bb5d..17da079 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,6 +1,6 @@ {% set name = "deepspeed" %} {% set version = "0.14.0" %} -{% set number = 1 %} +{% set number = 2 %} {% set torch_proc_type = "cuda" if cuda_compiler_version != "None" else "cpu" %}