[NVIDIA] Fix Lint #471
This file contains hidden or 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
| name: win-build | |
| on: | |
| pull_request: | |
| paths: | |
| - "third_party/**" | |
| - "xformers/csrc/**" | |
| - ".github/workflows/win-build.yml" | |
| - ".github/actions/setup-build-cuda/action.yml" | |
| - "setup.py" | |
| - "requirements*.txt" | |
| env: | |
| FORCE_CUDA: 1 | |
| MAX_JOBS: 6 | |
| DISTUTILS_USE_SDK: 1 # otherwise distutils will complain on windows about multiple versions of msvc | |
| XFORMERS_BUILD_TYPE: "Release" | |
| TMPDIR: "./x" | |
| jobs: | |
| win_build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| arch: | |
| - "8.0" | |
| name: win-build-${{ matrix.arch }} | |
| runs-on: windows-8-core | |
| env: | |
| PY: python3 | |
| TORCH_CUDA_ARCH_LIST: ${{ matrix.arch }} | |
| timeout-minutes: 360 | |
| defaults: | |
| run: | |
| shell: bash | |
| steps: | |
| - name: Workarounds for longpaths - git-config | |
| run: | | |
| git config --system core.longpaths true | |
| - name: Recursive checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| path: "." | |
| - name: Workarounds for longpaths - TMPDIR | |
| run: | | |
| mkdir x | |
| python -c "import tempfile; print(tempfile.gettempdir())" | |
| python -c "import tempfile; assert(len(tempfile.gettempdir()) < 30)" | |
| - name: HACKFIX for cutlass compiler bug | |
| if: runner.os == 'Windows' | |
| run: | | |
| # See https://github.com/NVIDIA/cutlass/issues/1732 | |
| rm -f third_party/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized_pingpong.hpp | |
| touch third_party/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized_pingpong.hpp | |
| - name: Setup Runner | |
| uses: ./.github/actions/setup-build-cuda | |
| with: | |
| toolkit_type: "cuda" | |
| toolkit_short_version: "130" | |
| python: "3.10" | |
| - name: Remove internal code | |
| run: | | |
| mkdir -p .github/sync.fairinternal/ | |
| touch .github/sync.fairinternal/ossify.sh | |
| chmod +x .github/sync.fairinternal/ossify.sh | |
| .github/sync.fairinternal/ossify.sh | |
| - name: Install build dependencies | |
| run: | | |
| $PY -m pip install wheel setuptools ninja torch==2.9.0 -r requirements.txt --extra-index-url https://download.pytorch.org/whl/cu130 | |
| git config --global --add safe.directory "*" | |
| $PY -c "import torch; print('torch', torch.__version__)" | |
| $PY -c "import torch; print('torch.cuda', torch.version.cuda)" | |
| ninja --version | |
| - name: Create sdist | |
| run: $PY setup.py sdist | |
| - name: Build from sdist | |
| shell: bash -l {0} | |
| run: | | |
| $PY -m pip install -v --no-build-isolation dist/* | |
| - name: Info | |
| run: | | |
| cd ../../ # So we don't have a folder named `xformers` | |
| XFORMERS_MORE_DETAILS=1 $PY -m xformers.info | |
| # - name: Open an SSH session on failure to debug | |
| # if: ${{ failure() }} | |
| # uses: mxschmitt/action-tmate@v3 |