Skip to content
This repository was archived by the owner on Aug 15, 2025. It is now read-only.
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,4 @@ node_modules
# Analytics cache folder
cache/
.vscode/
/.vs
8 changes: 4 additions & 4 deletions conda/pytorch-nightly/bld.bat
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ echo libuv_ROOT=%libuv_ROOT%

IF "%USE_SCCACHE%" == "1" (
mkdir %SRC_DIR%\tmp_bin
curl -k https://s3.amazonaws.com/ossci-windows/sccache.exe --output %SRC_DIR%\tmp_bin\sccache.exe
curl -k https://s3.amazonaws.com/ossci-windows/sccache-cl.exe --output %SRC_DIR%\tmp_bin\sccache-cl.exe
curl -k https://ossci-windows.s3.amazonaws.com/sccache-v0.7.4.exe --output %SRC_DIR%\tmp_bin\sccache.exe
set "PATH=%SRC_DIR%\tmp_bin;%PATH%"
set SCCACHE_IDLE_TIMEOUT=1500
)
Expand Down Expand Up @@ -87,8 +86,9 @@ sccache --stop-server
sccache --start-server
sccache --zero-stats

set CC=sccache-cl
set CXX=sccache-cl
set CMAKE_C_COMPILER_LAUNCHER=sccache
set CMAKE_CXX_COMPILER_LAUNCHER=sccache


:sccache_end

Expand Down
3 changes: 1 addition & 2 deletions windows/build_pytorch.bat
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,7 @@ if not "%CUDA_VERSION%" == "cpu" (
:: Install sccache
if "%USE_SCCACHE%" == "1" (
mkdir %CD%\tmp_bin
curl -k https://s3.amazonaws.com/ossci-windows/sccache.exe --output %CD%\tmp_bin\sccache.exe
curl -k https://s3.amazonaws.com/ossci-windows/sccache-cl.exe --output %CD%\tmp_bin\sccache-cl.exe
curl -k https://ossci-windows.s3.amazonaws.com/sccache-v0.7.4.exe --output %CD%\tmp_bin\sccache.exe
if not "%CUDA_VERSION%" == "" (
set ADDITIONAL_PATH=%CD%\tmp_bin
set SCCACHE_IDLE_TIMEOUT=1500
Expand Down
4 changes: 2 additions & 2 deletions windows/internal/check_opts.bat
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ where /q sccache.exe

IF NOT ERRORLEVEL 1 (
echo sccache found, using it to speed up builds
set CC=sccache cl
set CXX=sccache cl
set CMAKE_C_COMPILER_LAUNCHER=sccache
set CMAKE_CXX_COMPILER_LAUNCHER=sccache
)

:sccache_end
Expand Down
4 changes: 2 additions & 2 deletions windows/internal/setup.bat
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ IF NOT exist "setup.py" (
cd %MODULE_NAME%
)

if "%CXX%"=="sccache cl" goto sccache_start
if "%CXX%"=="sccache" goto sccache_start
if "%CXX%"=="sccache-cl" goto sccache_start
goto sccache_end

Expand Down Expand Up @@ -92,7 +92,7 @@ python setup.py bdist_wheel -d "%PYTORCH_FINAL_PACKAGE_DIR%"
IF ERRORLEVEL 1 exit /b 1
IF NOT ERRORLEVEL 0 exit /b 1

if "%CXX%"=="sccache cl" goto sccache_cleanup
if "%CXX%"=="sccache" goto sccache_cleanup
if "%CXX%"=="sccache-cl" goto sccache_cleanup
goto sccache_cleanup_end

Expand Down