build_win.bat 337 B

12345678910111213141516171819
  1. @echo off
  2. set DS_BUILD_AIO=0
  3. set DS_BUILD_SPARSE_ATTN=0
  4. echo Administrative permissions required. Detecting permissions...
  5. net session >nul 2>&1
  6. if %errorLevel% == 0 (
  7. echo Success: Administrative permissions confirmed.
  8. ) else (
  9. echo Failure: Current permissions inadequate.
  10. goto end
  11. )
  12. python setup.py bdist_wheel
  13. :end