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

Update recipe to nvcomp 4.0.1. #15

Merged
merged 7 commits into from
Aug 28, 2024
Merged
Changes from 2 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
32 changes: 15 additions & 17 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{% set version = "3.0.6" %}
{% set version = "4.0.1" %}
{% set cuda_major = (cuda_compiler_version|default("12.0.0")).split(".")[0] %}
{% set platform = "x86_64" %} # [linux64]
{% set platform = "SBSA" %} # [aarch64]
{% set platform = "windows" %} # [win]
{% set extension = "tgz" %} # [not win]
{% set platform = "linux-x86_64" %} # [linux64]
{% set platform = "linux-sbsa" %} # [aarch64]
{% set platform = "windows-x86_64" %} # [win]
{% set extension = "tar.gz" %} # [not win]
{% set extension = "zip" %} # [win]

package:
name: nvcomp
version: {{ version }}

source:
- url: https://developer.download.nvidia.com/compute/nvcomp/{{ version }}/local_installers/nvcomp_{{ version }}_{{ platform }}_{{ cuda_major }}.x.{{ extension }}
sha256: 2631c4cb36c2b65e1c8d3a818bc470b849893e72bdbee0365d22dc3f7c130954 # [linux64 and (cuda_compiler_version or "None").startswith("11")]
sha256: a76511cc55a40aa9f8ca6b6b437102cc90969c69bfbcd66265f2e04f8f01435f # [linux64 and (cuda_compiler_version or "None").startswith("12")]
sha256: 21b0b6ad262101a9d89bc5dc83cddf3da6b57b0a5ef8d75e5876e921ca46c9c5 # [aarch64 and (cuda_compiler_version or "None").startswith("11")]
sha256: d1a25754c21e37e643ebe5828ffdb11d0f237e27c4f29b83b5c17de2e44247d5 # [aarch64 and (cuda_compiler_version or "None").startswith("12")]
sha256: 10b98c8b58b9186656bfaf06ce8a7d06a5ce3c1318a9eaa254c47cadb71f748d # [win and (cuda_compiler_version or "None").startswith("11")]
sha256: f7f25250d628e015854c0f65688921a2947f53f8b72aa01ce7c45aa2ea04893c # [win and (cuda_compiler_version or "None").startswith("12")]
- url: https://developer.download.nvidia.com/compute/nvcomp/{{ version }}/local_installers/nvcomp-{{ platform }}-{{ version }}-cuda{{ cuda_major }}.x.{{ extension }}
sha256: 8e92afa5f007e0d5373bf373ffa6d3c531e0a1d33c76f475e100bb0252e53777 # [linux64 and (cuda_compiler_version or "None").startswith("11")]
bdice marked this conversation as resolved.
Show resolved Hide resolved
sha256: 609f64607d02e77c77c1848f81a04bbb1389329fa95533813c3fe7d77c57bd30 # [linux64 and (cuda_compiler_version or "None").startswith("12")]
sha256: 456129c03bfce6c3935b9f68455f40b65bc1b88b3f7972f70cc6fb9df222e676 # [aarch64 and (cuda_compiler_version or "None").startswith("11")]
sha256: bc314da00094fd93adbaf0bd762ab9f914643bd832ae45e238f321ee6477a2e0 # [aarch64 and (cuda_compiler_version or "None").startswith("12")]
sha256: 9263cfd57bb1ccec26e13b65fa2cd99c04877d54e42c17c57053bc5391ec733f # [win and (cuda_compiler_version or "None").startswith("11")]
sha256: 4343aabbb4b3cf96bfbbb01ce2177cfdb3a10e477cf07702500ea98ff9e51308 # [win and (cuda_compiler_version or "None").startswith("12")]
# Include cudart license because it is statically linked.
bdice marked this conversation as resolved.
Show resolved Hide resolved
- url: https://developer.download.nvidia.com/compute/cuda/redist/cuda_cudart/LICENSE.txt
fn: cudart_LICENSE.txt
Expand Down Expand Up @@ -48,8 +48,8 @@ requirements:
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- {{ compiler('cuda') }}
- {{ stdlib('c') }}
- arm-variant * {{ arm_variant_type }} # [aarch64]
- sysroot_{{ target_platform }} 2.17 # [linux]
host:
- cuda-version {{ cuda_major }}
run:
Expand Down Expand Up @@ -99,11 +99,9 @@ about:
Software License Agreement (EULA). By downloading and using the packages,
you accept the terms and conditions of the NVIDIA nvCOMP EULA -
https://developer.download.nvidia.com/compute/nvcomp/2.3/LICENSE.txt
doc_url: https://github.com/NVIDIA/nvcomp/blob/main/README.md
doc_url: https://docs.nvidia.com/cuda/nvcomp/index.html
dev_url: https://developer.nvidia.com/nvcomp

extra:
recipe-maintainers:
- adibbley
- bdice
- jakirkham
- conda-forge/cuda
Loading