forked from pytorch/vision
-
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.
Summary: Stack of PRs for code sync Pull Request resolved: pytorch#2306 Reviewed By: lw Differential Revision: D21971343 Pulled By: fmassa fbshipit-source-id: bda18d47672729bb7aff8891c17ebdf9ec076475
- Loading branch information
1 parent
2104083
commit a645468
Showing
18 changed files
with
957 additions
and
263 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,15 @@ | ||
if "%VC_YEAR%" == "2017" set VSDEVCMD_ARGS=-vcvars_ver=14.11 | ||
if "%VC_YEAR%" == "2017" powershell packaging/windows/internal/vs2017_install.ps1 | ||
if errorlevel 1 exit /b 1 | ||
|
||
call packaging/windows/internal/cuda_install.bat | ||
if errorlevel 1 exit /b 1 | ||
|
||
call packaging/windows/internal/nightly_defaults.bat Conda | ||
if errorlevel 1 exit /b 1 | ||
|
||
set PYTORCH_FINAL_PACKAGE_DIR=%CD%\packaging\windows\output | ||
if not exist "%PYTORCH_FINAL_PACKAGE_DIR%" mkdir %PYTORCH_FINAL_PACKAGE_DIR% | ||
|
||
bash ./packaging/conda/build_vision.sh %CUDA_VERSION% %TORCHVISION_BUILD_VERSION% %TORCHVISION_BUILD_NUMBER% | ||
if errorlevel 1 exit /b 1 |
Oops, something went wrong.