We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1538229 commit d4a1be3Copy full SHA for d4a1be3
conda/dgl/meta.yaml
@@ -1,3 +1,5 @@
1
+{% set use_cuda = environ.get('USE_CUDA', False) %}
2
+{% set package_name = 'dgl' + environ.get('DGL_PACKAGE_SUFFIX', '') %}
3
package:
4
name: dgl{{ environ.get('DGL_PACKAGE_SUFFIX', '') }}
5
version: "0.6.1"
@@ -19,10 +21,13 @@ requirements:
19
21
- scipy
20
22
- networkx
23
- requests
24
+ - vs2015_runtime # [win]
25
+ - cudatoolkit {{ CUDA_VER }} # [use_cuda]
26
27
build:
28
script_env:
29
- USE_CUDA
30
+ - CUDA_VER
31
32
about:
33
home: https://github.com/dmlc/dgl.git
0 commit comments