File tree Expand file tree Collapse file tree 6 files changed +13
-5
lines changed Expand file tree Collapse file tree 6 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 5
5
# distribution of this software and related documentation without an express
6
6
# license agreement from NVIDIA CORPORATION is strictly prohibited.
7
7
8
- name : Build and Test Warp
8
+ name : CI
9
9
10
10
on :
11
11
workflow_call :
Original file line number Diff line number Diff line change @@ -19,5 +19,5 @@ concurrency:
19
19
20
20
jobs :
21
21
build-and-test :
22
- uses : ./.github/workflows/build-and-test .yml
22
+ uses : ./.github/workflows/ci .yml
23
23
secrets : inherit
Original file line number Diff line number Diff line change 14
14
/warp /builtins.py
15
15
/warp /constants.py
16
16
/licenses /
17
- /warp /examples /
18
17
/README.md
19
18
/SECURITY.md
20
19
21
20
^ [CI /CD ] @ ershi @ ncapens
22
21
/.github /
23
22
/.gitlab /
24
- /warp /tests /
25
23
/warp /thirdparty /unittest_parallel.py
26
24
/.gitlab-ci.yml
27
25
/.pre-commit-config.yaml
28
26
.gitignore
29
27
.gitattributes
30
28
31
- ^ [Sphinx Documentation ] @ mmacklin @ ershi
29
+ ^ [Docs and Examples ] @ mmacklin @ ershi
32
30
/docs /
31
+ /warp /examples /
33
32
34
33
^ [Code Generation] @ ncapens @ mmacklin
35
34
/warp /codegen.py
Original file line number Diff line number Diff line change @@ -67,6 +67,9 @@ windows-x86_64 test:
67
67
- .\_venv\Scripts\Activate.ps1
68
68
- python -m pip install --upgrade pip
69
69
- python -m pip install --upgrade usd-core
70
+ # Temporary HACK: use NumPy < 2.0 on Windows due to issues with Torch wheels that are not compatible
71
+ # https://github.com/pytorch/pytorch/issues/128860
72
+ - python -m pip install "numpy<2"
70
73
- python -m pip install --upgrade torch --extra-index-url https://download.pytorch.org/whl/cu121
71
74
- python -m pip install -e .
72
75
- Write-Output "$([char]27)[0Ksection_end:$(GetTime):install_dependencies$([char]13)$([char]27)[0K"
Original file line number Diff line number Diff line change @@ -147,6 +147,9 @@ windows-x86_64 test:
147
147
- .\_venv\Scripts\Activate.ps1
148
148
- python -m pip install --upgrade pip
149
149
- python -m pip install --upgrade usd-core
150
+ # Temporary HACK: use NumPy < 2.0 on Windows due to issues with Torch wheels that are not compatible
151
+ # https://github.com/pytorch/pytorch/issues/128860
152
+ - python -m pip install "numpy<2"
150
153
- python -m pip install --upgrade torch --extra-index-url https://download.pytorch.org/whl/cu121
151
154
- python -m pip install -e .
152
155
- Write-Output "$([char]27)[0Ksection_end:$(GetTime):install_dependencies$([char]13)$([char]27)[0K"
Original file line number Diff line number Diff line change @@ -136,6 +136,9 @@ windows-x86_64 test:
136
136
- .\_venv\Scripts\Activate.ps1
137
137
- python -m pip install --upgrade pip
138
138
- python -m pip install --upgrade usd-core
139
+ # Temporary HACK: use NumPy < 2.0 on Windows due to issues with Torch wheels that are not compatible
140
+ # https://github.com/pytorch/pytorch/issues/128860
141
+ - python -m pip install "numpy<2"
139
142
- python -m pip install --upgrade torch --extra-index-url https://download.pytorch.org/whl/cu121
140
143
- python -m pip install -e .
141
144
- Write-Output "$([char]27)[0Ksection_end:$(GetTime):install_dependencies$([char]13)$([char]27)[0K"
You can’t perform that action at this time.
0 commit comments