forked from pytorch/pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve Windows Compatibility (for csrc/scripts) (pytorch#2941)
- Loading branch information
1 parent
1d57a2d
commit aa91193
Showing
60 changed files
with
842 additions
and
379 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
@echo off | ||
|
||
set PYCMD=python | ||
|
||
echo Running JIT tests | ||
%PYCMD% test_jit.py | ||
|
||
echo Running torch tests | ||
%PYCMD% test_torch.py | ||
|
||
echo Running autograd tests | ||
%PYCMD% test_autograd.py | ||
%PYCMD% test_potrf.py | ||
|
||
echo Running sparse tests | ||
%PYCMD% test_sparse.py | ||
|
||
echo Running nn tests | ||
%PYCMD% test_nn.py | ||
|
||
echo Running legacy nn tests | ||
%PYCMD% test_legacy_nn.py | ||
|
||
echo Running optim tests | ||
%PYCMD% test_optim.py | ||
|
||
echo Running multiprocessing tests | ||
%PYCMD% test_multiprocessing.py | ||
|
||
echo Running util tests | ||
%PYCMD% test_utils.py | ||
|
||
echo Running dataloader tests | ||
%PYCMD% test_dataloader.py | ||
|
||
echo Running cuda tests | ||
%PYCMD% test_cuda.py | ||
|
||
echo Running NCCL tests | ||
%PYCMD% test_nccl.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.