Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
one
spconv
Commits
6a32c34f
Commit
6a32c34f
authored
Sep 24, 2022
by
yan.yan
Browse files
fix missing windows cuda url
parent
dac35adc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
.github/workflows/build.yaml
.github/workflows/build.yaml
+3
-3
tools/install_windows_cuda.ps1
tools/install_windows_cuda.ps1
+2
-0
No files found.
.github/workflows/build.yaml
View file @
6a32c34f
...
...
@@ -68,7 +68,7 @@ jobs:
.\tools\install_windows_cuda.ps1
-
name
:
Set up Python ${{ matrix.python-version }}
uses
:
actions/setup-python@v
2
uses
:
actions/setup-python@v
4
with
:
python-version
:
${{ matrix.python-version }}
-
uses
:
ilammy/msvc-dev-cmd@v1
...
...
@@ -133,7 +133,7 @@ jobs:
- 'pyproject.toml'
-
name
:
Set up Python ${{ matrix.python-version }}
uses
:
actions/setup-python@v
2
uses
:
actions/setup-python@v
4
with
:
python-version
:
${{ matrix.python-version }}
...
...
@@ -194,7 +194,7 @@ jobs:
-
name
:
Publish a Python distribution to PyPI
if
:
github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses
:
pypa/gh-action-pypi-publish@
master
uses
:
pypa/gh-action-pypi-publish@
release/v1
with
:
user
:
__token__
password
:
${{ secrets.pypi_password }}
\ No newline at end of file
tools/install_windows_cuda.ps1
View file @
6a32c34f
...
...
@@ -11,6 +11,7 @@ $CUDA_KNOWN_URLS = @{
"11.3"
=
"https://developer.download.nvidia.com/compute/cuda/11.3.1/network_installers/cuda_11.3.1_win10_network.exe"
;
"11.4"
=
"https://developer.download.nvidia.com/compute/cuda/11.4.2/network_installers/cuda_11.4.2_win10_network.exe"
;
"11.5"
=
"https://developer.download.nvidia.com/compute/cuda/11.5.0/network_installers/cuda_11.5.0_win10_network.exe"
;
"11.7"
=
"https://developer.download.nvidia.com/compute/cuda/11.7.1/network_installers/cuda_11.7.1_windows_network.exe"
;
}
# cuda_runtime.h is in nvcc <= 10.2, but cudart >= 11.0
...
...
@@ -44,6 +45,7 @@ if (($CUDA_VERSION_FULL -eq "10.2") -or ($CUDA_VERSION_FULL -eq "11.0") -or ($CU
"cudart"
;
"thrust"
;
"curand_dev"
;
"cuxxfilt"
;
)
}
...
...
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