├── .github ├── FUNDING.yml ├── auto-merge.yml ├── azure-pipelines-scripts │ ├── 7z_install.bat │ ├── conda_install.bat │ ├── env_fix.bat │ ├── mkl_install.bat │ ├── sccache_debug.bat │ ├── sccache_setup.bat │ └── sccache_update.bat └── azure-pipelines.yml ├── .gitignore ├── README.md ├── auto.bat ├── caffe2_builders ├── v140 │ ├── auto.bat │ ├── download_deps.bat │ └── msbuild.bat └── v141 │ ├── auto.bat │ └── msbuild.bat ├── cpu.bat ├── cuda100.bat ├── cuda80.bat ├── cuda90.bat ├── cuda91.bat ├── cuda92.bat └── internal ├── check_deps.bat ├── check_opts.bat ├── clone.bat └── setup.bat /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/.github/auto-merge.yml -------------------------------------------------------------------------------- /.github/azure-pipelines-scripts/7z_install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/.github/azure-pipelines-scripts/7z_install.bat -------------------------------------------------------------------------------- /.github/azure-pipelines-scripts/conda_install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/.github/azure-pipelines-scripts/conda_install.bat -------------------------------------------------------------------------------- /.github/azure-pipelines-scripts/env_fix.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/.github/azure-pipelines-scripts/env_fix.bat -------------------------------------------------------------------------------- /.github/azure-pipelines-scripts/mkl_install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/.github/azure-pipelines-scripts/mkl_install.bat -------------------------------------------------------------------------------- /.github/azure-pipelines-scripts/sccache_debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/.github/azure-pipelines-scripts/sccache_debug.bat -------------------------------------------------------------------------------- /.github/azure-pipelines-scripts/sccache_setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/.github/azure-pipelines-scripts/sccache_setup.bat -------------------------------------------------------------------------------- /.github/azure-pipelines-scripts/sccache_update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/.github/azure-pipelines-scripts/sccache_update.bat -------------------------------------------------------------------------------- /.github/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/.github/azure-pipelines.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | pytorch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/README.md -------------------------------------------------------------------------------- /auto.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/auto.bat -------------------------------------------------------------------------------- /caffe2_builders/v140/auto.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/caffe2_builders/v140/auto.bat -------------------------------------------------------------------------------- /caffe2_builders/v140/download_deps.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/caffe2_builders/v140/download_deps.bat -------------------------------------------------------------------------------- /caffe2_builders/v140/msbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/caffe2_builders/v140/msbuild.bat -------------------------------------------------------------------------------- /caffe2_builders/v141/auto.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/caffe2_builders/v141/auto.bat -------------------------------------------------------------------------------- /caffe2_builders/v141/msbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/caffe2_builders/v141/msbuild.bat -------------------------------------------------------------------------------- /cpu.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/cpu.bat -------------------------------------------------------------------------------- /cuda100.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/cuda100.bat -------------------------------------------------------------------------------- /cuda80.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/cuda80.bat -------------------------------------------------------------------------------- /cuda90.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/cuda90.bat -------------------------------------------------------------------------------- /cuda91.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/cuda91.bat -------------------------------------------------------------------------------- /cuda92.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/cuda92.bat -------------------------------------------------------------------------------- /internal/check_deps.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/internal/check_deps.bat -------------------------------------------------------------------------------- /internal/check_opts.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/internal/check_opts.bat -------------------------------------------------------------------------------- /internal/clone.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/internal/clone.bat -------------------------------------------------------------------------------- /internal/setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc123/pytorch-scripts/HEAD/internal/setup.bat --------------------------------------------------------------------------------