-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
meta.yaml
48 lines (41 loc) · 1.2 KB
/
meta.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{% set version = "12.6.2" %}
{% set exists = "which" %} # [linux]
{% set exists = "where" %} # [win]
package:
name: cuda-compiler
version: {{ version }}
source:
url: https://developer.download.nvidia.com/compute/cuda/redist/cuda_documentation/LICENSE.txt
sha256: e2c71babfd18a8e69542dd7e9ca018f9caa438094001a58e6bc4d8c999bf0d07
build:
number: 0
noarch: generic
requirements:
run:
- __linux # [linux]
- __win # [win]
- c-compiler
- cxx-compiler
- cuda-cuobjdump 12.6.77
- cuda-cuxxfilt 12.6.77
- cuda-nvcc 12.6.77
- cuda-nvprune 12.6.77
test:
commands:
- {{ exists }} cuobjdump
- {{ exists }} cu++filt
- {{ exists }} nvcc
- {{ exists }} nvprune
about:
home: https://developer.nvidia.com/cuda-toolkit
license_file: LICENSE.txt
license: LicenseRef-NVIDIA-End-User-License-Agreement
license_url: https://docs.nvidia.com/cuda/eula/index.html
summary: A meta-package containing tools to start developing a CUDA application
description: |
A meta-package containing tools to start developing and compiling a
basic CUDA application.
doc_url: https://docs.nvidia.com/cuda/index.html
extra:
recipe-maintainers:
- conda-forge/cuda