diff --git a/torch-install.bat b/torch-install.bat deleted file mode 100644 index 3e30ff9df9c..00000000000 --- a/torch-install.bat +++ /dev/null @@ -1,13 +0,0 @@ -@echo off - - - -start /wait cmd /k "%cd%\venv\Scripts\activate && pip install torch==2.1.0 torchvision==0.16.0 openvino-nightly==2023.2.0.dev20231031 imageio --force-reinstall && exit" - -echo torch 2.1.0 dev installation completed. - -powershell -executionpolicy bypass .\torch-install.ps1 - - -echo eval_frame.py modification completed. press any key to exit -pause diff --git a/torch-install.ps1 b/torch-install.ps1 deleted file mode 100644 index c68e86d3b6c..00000000000 --- a/torch-install.ps1 +++ /dev/null @@ -1,51 +0,0 @@ -$scriptDirectory = $PSScriptRoot -Set-Location $scriptDirectory - -## modify webui-user.bat -$filePath = $pwd.Path + "\webui-user.bat" - -$newContent = @" - -@echo off - -set PYTHON= -set GIT= -set VENV_DIR= -set COMMANDLINE_ARGS=--skip-torch-cuda-test --precision full --no-half --skip-prepare-environment -set PYTORCH_TRACING_MODE=TORCHFX - -call webui.bat - -"@ -$newContent | Set-Content -Path $filePath - - - - - - - -### modify eval_frame - -$eval_filePath = $pwd.Path + "\venv\Lib\site-packages\torch\_dynamo\eval_frame.py" - - - -#comment out the two lines to test torch.compile on windows -$replacements = @{ - " if sys.platform == `"win32`":" = "# if sys.platform == `"win32`":" - " raise RuntimeError(`"Windows not yet supported for torch.compile`")" = "# raise RuntimeError(`"Windows not yet supported for torch.compile`")" -} - - -$lines = Get-Content -Path $eval_filePath - -foreach ($search_Text in $replacements.Keys){ - $replaceText = $replacements[$search_text] - $lines = $lines.Replace($search_Text , $replaceText) -} - - -#write content back to file -$lines | Set-Content -Path $eval_filePath -