Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
torch-spline-conv
Commits
18875abb
Commit
18875abb
authored
Sep 06, 2021
by
rusty1s
Browse files
[ci skip] building conda
parent
51160fdc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
5 deletions
+14
-5
.github/workflows/building-conda.yml
.github/workflows/building-conda.yml
+13
-4
conda/pytorch-spline-conv/meta.yaml
conda/pytorch-spline-conv/meta.yaml
+1
-1
No files found.
.github/workflows/building-conda.yml
View file @
18875abb
...
@@ -10,7 +10,7 @@ jobs:
...
@@ -10,7 +10,7 @@ jobs:
strategy
:
strategy
:
fail-fast
:
false
fail-fast
:
false
matrix
:
matrix
:
os
:
[
ubuntu-16.04
,
macos-10.15
,
windows-latest
]
os
:
[
ubuntu-16.04
,
macos-10.15
]
#
, windows-latest]
python-version
:
[
3.6
,
3.7
,
3.8
,
3.9
]
python-version
:
[
3.6
,
3.7
,
3.8
,
3.9
]
torch-version
:
[
1.8.0
,
1.9.0
]
torch-version
:
[
1.8.0
,
1.9.0
]
cuda-version
:
[
'
cpu'
,
'
cu101'
,
'
cu102'
,
'
cu111'
]
cuda-version
:
[
'
cpu'
,
'
cu101'
,
'
cu102'
,
'
cu111'
]
...
@@ -57,15 +57,24 @@ jobs:
...
@@ -57,15 +57,24 @@ jobs:
if
:
${{ matrix.cuda-version != 'cpu' }}
if
:
${{ matrix.cuda-version != 'cpu' }}
run
:
|
run
:
|
source .github/workflows/cuda/${{ matrix.cuda-version }}-${{ runner.os }}-env.sh
source .github/workflows/cuda/${{ matrix.cuda-version }}-${{ runner.os }}-env.sh
FORCE_CUDA=1
./conda/pytorch-spline-conv/build_conda.sh ${{ matrix.python-version }} ${{ matrix.torch-version }} ${{ matrix.cuda-version }}
./conda/pytorch-spline-conv/build_conda.sh ${{ matrix.python-version }} ${{ matrix.torch-version }} ${{ matrix.cuda-version }}
shell
:
shell
:
bash -l {0}
bash -l {0}
-
name
:
Publish Conda package
-
name
:
Publish Conda package
on organization channel
run
:
|
run
:
|
conda install anaconda-client --yes
conda install anaconda-client --yes
anaconda upload --force --label main $HOME/conda-bld/*/*.tar.bz2
anaconda upload --force --label main $HOME/conda-bld/*/*.tar.bz2
env
:
env
:
ANACONDA_API_TOKEN
:
${{ secrets.ANACONDA_TOKEN }}
ANACONDA_API_TOKEN
:
${{ secrets.PYG_ANACONDA_TOKEN }}
shell
:
bash -l {0}
-
name
:
Publish Conda package on personal channel
run
:
|
conda install anaconda-client --yes
anaconda upload --force --label main $HOME/conda-bld/*/*.tar.bz2
env
:
ANACONDA_API_TOKEN
:
${{ secrets.RUSTY1S_ANACONDA_TOKEN }}
shell
:
shell
:
bash -l {0}
bash -l {0}
conda/pytorch-spline-conv/meta.yaml
View file @
18875abb
...
@@ -25,7 +25,7 @@ build:
...
@@ -25,7 +25,7 @@ build:
script
:
pip install .
script
:
pip install .
script_env
:
script_env
:
-
FORCE_CUDA
-
FORCE_CUDA
-
TORCH_CUDA_ARCH_LIST
="5.2 6.0 6.1 7.0 7.5 8.0 8.6+PTX"
-
TORCH_CUDA_ARCH_LIST
test
:
test
:
imports
:
imports
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment