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
ktransformers
Commits
c80490a9
Commit
c80490a9
authored
Aug 29, 2024
by
chenxl
Browse files
[fix] some bugs while package in github action
parent
f536a708
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
8 deletions
+18
-8
.github/workflows/package_wheel_release.yml
.github/workflows/package_wheel_release.yml
+5
-4
.github/workflows/package_wheel_test.yml
.github/workflows/package_wheel_test.yml
+13
-4
No files found.
.github/workflows/package_wheel_release.yml
View file @
c80490a9
...
...
@@ -28,7 +28,6 @@ jobs:
-
{
os
:
ubuntu-20.04
,
pyver
:
'
3.12'
,
cuda
:
'
12.1.1'
,
torch
:
'
2.4.0'
,
cudaarch
:
'
8.0;8.6;8.7;8.9;9.0+PTX'
,
instruct
:
'
FANCY'
,
torch_cu
:
'
121'
}
-
{
os
:
ubuntu-20.04
,
pyver
:
'
3.12'
,
cuda
:
'
12.1.1'
,
torch
:
'
2.4.0'
,
cudaarch
:
'
8.0;8.6;8.7;8.9;9.0+PTX'
,
instruct
:
'
AVX512'
,
torch_cu
:
'
121'
}
-
{
os
:
ubuntu-20.04
,
pyver
:
'
3.12'
,
cuda
:
'
12.1.1'
,
torch
:
'
2.4.0'
,
cudaarch
:
'
8.0;8.6;8.7;8.9;9.0+PTX'
,
instruct
:
'
AVX2'
,
torch_cu
:
'
121'
}
-
{
os
:
ubuntu-20.04
,
pyver
:
'
3.12'
,
cuda
:
'
12.5.1'
,
torch
:
'
2.3.0'
,
cudaarch
:
'
8.0;8.6;8.7;8.9;9.0+PTX'
,
instruct
:
'
FANCY'
,
torch_cu
:
'
124'
}
-
{
os
:
ubuntu-20.04
,
pyver
:
'
3.12'
,
cuda
:
'
12.2.2'
,
torch
:
'
2.3.0'
,
cudaarch
:
'
8.0;8.6;8.7;8.9;9.0+PTX'
,
instruct
:
'
FANCY'
,
torch_cu
:
'
121'
}
-
{
os
:
ubuntu-20.04
,
pyver
:
'
3.12'
,
cuda
:
'
12.2.2'
,
torch
:
'
2.3.0'
,
cudaarch
:
'
8.0;8.6;8.7;8.9;9.0+PTX'
,
instruct
:
'
AVX512'
,
torch_cu
:
'
121'
}
-
{
os
:
ubuntu-20.04
,
pyver
:
'
3.12'
,
cuda
:
'
12.2.2'
,
torch
:
'
2.3.0'
,
cudaarch
:
'
8.0;8.6;8.7;8.9;9.0+PTX'
,
instruct
:
'
AVX2'
,
torch_cu
:
'
121'
}
...
...
@@ -187,8 +186,10 @@ jobs:
}
}
if ($IsWindows) {
if (Test-Path -Path "$env:CUDA_PATH/Library/bin/nvcc.exe"){
$env:CUDA_PATH = "$env:CUDA_PATH/Library"
$env:CUDA_HOME = $env:CUDA_PATH
}
$env:PATH = "$env:CUDA_PATH/bin;" + $env:PATH
$directory = "$env:CUDA_PATH/lib/x64/"
if (-not (Test-Path -Path $directory)) {
...
...
@@ -197,7 +198,7 @@ jobs:
}
cp $env:CUDA_PATH/lib/*.lib $env:CUDA_PATH/lib/x64/
$env:INCLUDE =$env:CUDA_PATH + "/include/targets/x64;" + $env:INCLUDE
$env:INCLUDE =$env:CONDA_PREFIX + "/include;" + $env:INCLUDE
}
python -m pip install torch==${{ matrix.torch }} torchvision torchaudio --index-url https://download.pytorch.org/whl/cu${{ matrix.torch_cu }}
python -m pip install cpufeature build wheel ninja packaging setuptools
...
...
.github/workflows/package_wheel_test.yml
View file @
c80490a9
name
:
Build Wheels
name
:
Build Wheels
Tests
on
:
workflow_dispatch
:
inputs
:
...
...
@@ -16,8 +16,10 @@ jobs:
matrix
:
include
:
# Ubuntu
-
{
os
:
ubuntu-20.04
,
pyver
:
'
3.12'
,
cuda
:
'
12.5.1'
,
torch
:
'
2.4.0'
,
cudaarch
:
'
8.9;9.0+PTX'
,
instruct
:
'
FANCY'
,
torch_cu
:
'
124'
}
-
{
os
:
ubuntu-20.04
,
pyver
:
'
3.12'
,
cuda
:
'
12.2.2'
,
torch
:
'
2.3.0'
,
cudaarch
:
'
8.9;9.0+PTX'
,
instruct
:
'
FANCY'
,
torch_cu
:
'
121'
}
-
{
os
:
windows-2022
,
pyver
:
'
3.11'
,
cuda
:
'
12.5.1'
,
torch
:
'
2.4.0'
,
cudaarch
:
'
8.9;9.0+PTX'
,
instruct
:
'
AVX2'
,
torch_cu
:
'
124'
}
-
{
os
:
windows-2022
,
pyver
:
'
3.12'
,
cuda
:
'
12.1.1'
,
torch
:
'
2.3.0'
,
cudaarch
:
'
8.9;9.0+PTX'
,
instruct
:
'
AVX2'
,
torch_cu
:
'
121'
}
defaults
:
run
:
...
...
@@ -96,12 +98,19 @@ jobs:
}
}
if ($IsWindows) {
if (Test-Path -Path "$env:CUDA_PATH/Library/bin/nvcc.exe"){
$env:CUDA_PATH = "$env:CUDA_PATH/Library"
$env:CUDA_HOME = $env:CUDA_PATH
}
$env:PATH = "$env:CUDA_PATH/bin;" + $env:PATH
$directory = "$env:CUDA_PATH/lib/x64/"
if (-not (Test-Path -Path $directory)) {
New-Item -ItemType Directory -Path $directory
Write-Output "Directory '$directory' created."
}
cp $env:CUDA_PATH/lib/*.lib $env:CUDA_PATH/lib/x64/
$env:INCLUDE =$env:CUDA_PATH + "/include/targets/x64;" + $env:INCLUDE
$env:INCLUDE =$env:CONDA_PREFIX + "/include;" + $env:INCLUDE
}
python -m pip install torch==${{ matrix.torch }} torchvision torchaudio --index-url https://download.pytorch.org/whl/cu${{ matrix.torch_cu }}
python -m pip install cpufeature build wheel ninja packaging setuptools
...
...
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