Skip to content

Cuda 11.8 and removal of dev packages #1243

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

Merged
merged 1 commit into from
Dec 16, 2022
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions conda/pytorch-cuda/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
version:
- 11.6
- 11.7
- 11.8
21 changes: 9 additions & 12 deletions conda/pytorch-cuda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# deployment:
# https://conda.anaconda.org/pytorch/noarch/
# https://conda.anaconda.org/pytorch/noarch/repodata.json
{% set build = 1 %}
{% set build = 2 %}
{% set cuda_constraints=">=11.6,<11.7" %}
{% set libcufft_constraints=">=10.7.0.55,<10.7.2.50" %}
{% set libcublas_constraints=">=11.8.1.74,<11.10.1.25" %}
Expand All @@ -21,6 +21,14 @@
{% set libcusparse_constraints=">=11.7.3.50,<11.7.5.86" %}
{% set libnpp_constraints=">=11.7.3.21,<11.8.0.86" %}
{% set libnvjpeg_constraints=">=11.7.2.34,<11.9.0.86" %}
{% elif version == '11.8' %}
{% set cuda_constraints=">=11.8,<12.0" %}
{% set libcufft_constraints=">=10.9.0.58,<11.0.0.21" %}
{% set libcublas_constraints=">=11.11.3.6,<12.0.1.189" %}
{% set libcusolver_constraints=">=11.4.1.48,<11.4.2.57" %}
{% set libcusparse_constraints=">=11.7.5.86,<12.0.0.76" %}
{% set libnpp_constraints=">=11.8.0.86,<12.0.0.30" %}
{% set libnvjpeg_constraints=">=11.9.0.86,<12.0.0.28" %}
{% endif %}

package:
Expand All @@ -41,31 +49,20 @@ requirements:
- cuda-cuobjdump {{ cuda_constraints }}
- cuda-cupti {{ cuda_constraints }}
- cuda-cuxxfilt {{ cuda_constraints }}
- cuda-driver-dev {{ cuda_constraints }}
- cuda-libraries {{ cuda_constraints }}
- cuda-libraries-dev {{ cuda_constraints }}
- cuda-cudaart-dev {{ cuda_constraints }}
- cuda-nvcc {{ cuda_constraints }}
- cuda-nvml-dev {{ cuda_constraints }}
- cuda-nvprune {{ cuda_constraints }}
- cuda-nvrtc {{ cuda_constraints }}
- cuda-nvrtc-dev {{ cuda_constraints }}
- cuda-nvtx {{ cuda_constraints }}
- cuda-runtime {{ cuda_constraints }}
- cuda-toolkit {{ cuda_constraints }}
- cuda-tools {{ cuda_constraints }}
- libcufft {{ libcufft_constraints }}
- libcufft-dev {{ libcufft_constraints }}
- libcublas {{ libcublas_constraints }}
- libcublas-dev {{ libcublas_constraints }}
- libcusolver {{ libcusolver_constraints }}
- libcusolver-dev {{ libcusolver_constraints }}
- libcusparse {{ libcusparse_constraints }}
- libcusparse-dev {{ libcusparse_constraints }}
- libnpp {{ libnpp_constraints }}
- libnpp-dev {{ libnpp_constraints }}
- libnvjpeg {{ libnvjpeg_constraints }}
- libnvjpeg-dev {{ libnvjpeg_constraints }}
# None, pytorch should depend on pytorch-cuda
test:
commands:
Expand Down