Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tentatively remove cusparselt support #244

Merged
Merged
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
7 changes: 1 addition & 6 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{% set name = "cupy" %}
{% set version = "13.0.0" %}
{% set sha256 = "2f04e7857f692a713360dc9c3b06709806ab8404fca39b5af9721c04a2979aae" %}
{% set build_num = 0 %}
{% set build_num = 1 %}

{% set target_name = "x86_64-linux" %} # [linux64]
{% set target_name = "ppc64le-linux" %} # [ppc64le]
Expand Down Expand Up @@ -92,7 +92,6 @@ outputs:
# we use this WAR until we figure out how to proceed with conda-forge/nvcc-feedstock#88
- set "NVCC=%NVCC% --use-local-env" # [win64]
- echo "nvcc is %NVCC%, CUDA path is %CUDA_PATH%" # [win]
- export CUSPARSELT_PATH="${PREFIX}" # [(linux64 or aarch64 or win) and (cuda_compiler_version or "").startswith("11")]
# Workaround __ieee128 error; see https://github.com/LLNL/blt/issues/341
- export NVCC="$NVCC -Xcompiler -mno-float128" # [ppc64le]

Expand Down Expand Up @@ -141,7 +140,6 @@ outputs:
- cudnn # [not (aarch64 or (ppc64le and (cuda_compiler_version or "").startswith("12")))]
- nccl # [linux]
- cutensor
- cusparselt # [(linux64 or aarch64 or win) and (cuda_compiler_version or "").startswith("11")]
requirements:
build:
- {{ compiler("c") }}
Expand All @@ -168,7 +166,6 @@ outputs:
- cudnn ~=8.8 # [build_platform != target_platform and not (aarch64 or (ppc64le and (cuda_compiler_version or "").startswith("12")))]
- nccl ~=2.16 # [build_platform != target_platform]
- cutensor ~=2.0 # [build_platform != target_platform]
- cusparselt ~=0.2.0 # [build_platform != target_platform and (linux64 or aarch64 or win) and (cuda_compiler_version or "").startswith("11")]
host:
- python
- pip
Expand All @@ -195,7 +192,6 @@ outputs:
- cudnn ~=8.8 # [not (aarch64 or (ppc64le and (cuda_compiler_version or "").startswith("12")))]
- nccl ~=2.16 # [linux]
- cutensor ~=2.0
- cusparselt ~=0.2.0 # [(linux64 or aarch64 or win) and (cuda_compiler_version or "").startswith("11")]
run:
- python
- {{ pin_compatible('fastrlock', max_pin='x.x') }}
Expand All @@ -220,7 +216,6 @@ outputs:
- {{ pin_compatible('cudnn') }} # [not (aarch64 or (ppc64le and (cuda_compiler_version or "").startswith("12")))]
- {{ pin_compatible('nccl') }} # [linux]
- {{ pin_compatible('cutensor') }}
- {{ pin_compatible('cusparselt', max_pin='x.x') }} # [(linux64 or aarch64 or win) and (cuda_compiler_version or "").startswith("11")]
test:
imports:
- cupy # dummy
Expand Down