├── .github └── workflows │ ├── build_wheels.yml │ ├── cuda │ ├── Linux_env.sh │ ├── Linux_install.sh │ ├── Windows_env.sh │ └── Windows_install.sh │ ├── env.sh │ └── make_packages_index.yml ├── .gitignore ├── LICENSE ├── README.md ├── create_index.py ├── get_jobs.py ├── package_specific.sh ├── package_specific ├── fairseq_cub.patch ├── flash_attention.patch ├── pytorch_win_cuda.patch └── tiny_cuda_nn.patch └── ruff.toml /.github/workflows/build_wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiroPsota/torch_packages_builder/HEAD/.github/workflows/build_wheels.yml -------------------------------------------------------------------------------- /.github/workflows/cuda/Linux_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiroPsota/torch_packages_builder/HEAD/.github/workflows/cuda/Linux_env.sh -------------------------------------------------------------------------------- /.github/workflows/cuda/Linux_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiroPsota/torch_packages_builder/HEAD/.github/workflows/cuda/Linux_install.sh -------------------------------------------------------------------------------- /.github/workflows/cuda/Windows_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiroPsota/torch_packages_builder/HEAD/.github/workflows/cuda/Windows_env.sh -------------------------------------------------------------------------------- /.github/workflows/cuda/Windows_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiroPsota/torch_packages_builder/HEAD/.github/workflows/cuda/Windows_install.sh -------------------------------------------------------------------------------- /.github/workflows/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiroPsota/torch_packages_builder/HEAD/.github/workflows/env.sh -------------------------------------------------------------------------------- /.github/workflows/make_packages_index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiroPsota/torch_packages_builder/HEAD/.github/workflows/make_packages_index.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiroPsota/torch_packages_builder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiroPsota/torch_packages_builder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiroPsota/torch_packages_builder/HEAD/README.md -------------------------------------------------------------------------------- /create_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiroPsota/torch_packages_builder/HEAD/create_index.py -------------------------------------------------------------------------------- /get_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiroPsota/torch_packages_builder/HEAD/get_jobs.py -------------------------------------------------------------------------------- /package_specific.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiroPsota/torch_packages_builder/HEAD/package_specific.sh -------------------------------------------------------------------------------- /package_specific/fairseq_cub.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiroPsota/torch_packages_builder/HEAD/package_specific/fairseq_cub.patch -------------------------------------------------------------------------------- /package_specific/flash_attention.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiroPsota/torch_packages_builder/HEAD/package_specific/flash_attention.patch -------------------------------------------------------------------------------- /package_specific/pytorch_win_cuda.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiroPsota/torch_packages_builder/HEAD/package_specific/pytorch_win_cuda.patch -------------------------------------------------------------------------------- /package_specific/tiny_cuda_nn.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiroPsota/torch_packages_builder/HEAD/package_specific/tiny_cuda_nn.patch -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiroPsota/torch_packages_builder/HEAD/ruff.toml --------------------------------------------------------------------------------