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
b129b238
Commit
b129b238
authored
Mar 16, 2023
by
rusty1s
Browse files
update
parent
2d792ffd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
7 deletions
+6
-7
.github/workflows/building-conda.yml
.github/workflows/building-conda.yml
+3
-4
.github/workflows/cuda/cu116-Linux-env.sh
.github/workflows/cuda/cu116-Linux-env.sh
+3
-3
No files found.
.github/workflows/building-conda.yml
View file @
b129b238
...
...
@@ -12,12 +12,11 @@ jobs:
matrix
:
# We have trouble building for Windows - drop for now.
os
:
[
ubuntu-18.04
,
macos-10.15
]
# windows-2019
python-version
:
[
'
3.7'
,
'
3.8'
,
'
3.9'
,
'
3.10'
,
'
3.11'
]
python-version
:
[
'
3.7'
,
'
3.8'
,
'
3.9'
,
'
3.10'
]
torch-version
:
[
1.13.0
,
2.0.0
]
cuda-version
:
[
'
cpu'
,
'
cu116'
,
'
cu117'
,
'
cu118'
]
# cuda-version: ['cpu', 'cu116', 'cu117', 'cu118']
cuda-version
:
[
'
cu116'
]
exclude
:
-
torch-version
:
1.13.0
python-version
:
'
3.11'
-
torch-version
:
2.0.0
python-version
:
'
3.7'
-
torch-version
:
1.13.0
...
...
.github/workflows/cuda/cu116-Linux-env.sh
View file @
b129b238
#!/bin/bash
CUDA_HOME
=
/usr/local/cuda-11.6
LD_LIBRARY_PATH
=
${
CUDA_HOME
}
/lib64:
${
LD_LIBRARY_PATH
}
PATH
=
${
CUDA_HOME
}
/bin:
${
PATH
}
export
CUDA_HOME
=
/usr/local/cuda-11.6
export
LD_LIBRARY_PATH
=
${
CUDA_HOME
}
/lib64:
${
LD_LIBRARY_PATH
}
export
PATH
=
${
CUDA_HOME
}
/bin:
${
PATH
}
export
FORCE_CUDA
=
1
export
TORCH_CUDA_ARCH_LIST
=
"3.5;5.0+PTX;6.0;7.0;7.5;8.0;8.6"
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