1. 07 Apr, 2023 1 commit
  2. 17 Feb, 2023 1 commit
  3. 12 Aug, 2022 1 commit
  4. 27 Jun, 2022 1 commit
  5. 02 Jun, 2022 1 commit
  6. 09 May, 2022 1 commit
  7. 06 May, 2022 1 commit
    • moto's avatar
      Use custom FFmpeg libraries for torchaudio binary distributions (#2355) · b7624c60
      moto authored
      Summary:
      This commit changes the way torchaudio binary distributions are built.
      
      * For all the binary distributions (conda/pip on Linux/macOS/Windnows), build custom FFmpeg libraries.
      * The custom FFmpeg libraries do not use `--use-gpl` nor `--use-nonfree`, so that they stay LGPL.
      * The custom FFmpeg libraries employ rpath so that the torchaudio binary distributions look for the corresponding FFmpeg libraries installed in the runtime environment.
      * The torchaudio binary build process will use them to bootstrap its build process.
      * The custom FFmpeg libraries are NOT shipped.
      
      This commit also add disclaimer about FFmpeg in README.
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2355
      
      Reviewed By: nateanl
      
      Differential Revision: D36202087
      
      Pulled By: mthrok
      
      fbshipit-source-id: c30e5222ba190106c897e42f567cac9152dbd8ef
      b7624c60
  8. 21 Apr, 2022 1 commit
  9. 24 Feb, 2022 1 commit
  10. 17 Feb, 2022 1 commit
  11. 11 Dec, 2021 1 commit
  12. 27 Sep, 2021 1 commit
  13. 31 Aug, 2021 1 commit
    • Nikita Shulga's avatar
      Enable Linux wheel/conda GPU package builds (#1730) · 0f844305
      Nikita Shulga authored
      * Remove some obsolete conditions about CUDA-10.0 from `pkg_helpers.bash`.
      * Use `USE_CUDA` instead of `FORCE_CUDA` in `pkg_helpers.bash`
      * Do not define `NO_CUDA_PACKAGE` in build_wheel.sh and build_cuda.sh
      * Add conda-forge for Win cuda-11.1 builds
      * Pass USE_CUDA / TORCH_CUDA_ARCH_LIST to conda build
      * Add selected CUDA to path
      * Don't define USE_CUDA for ROCM
      
      TODO: Fix Windows CUDA builds
      0f844305
  14. 02 Jun, 2021 1 commit
  15. 05 Mar, 2021 1 commit
  16. 04 Mar, 2021 1 commit
  17. 26 Oct, 2020 1 commit
  18. 24 Jun, 2020 1 commit
  19. 16 Apr, 2020 1 commit
  20. 16 Jan, 2020 1 commit
  21. 08 Aug, 2019 2 commits
  22. 07 Aug, 2019 2 commits
    • Edward Z. Yang's avatar
      Setup cuda_suffix (#218) · 636e1499
      Edward Z. Yang authored
      
      Signed-off-by: default avatarEdward Z. Yang <ezyang@fb.com>
      636e1499
    • Edward Z. Yang's avatar
      Rewrite our packaging from scratch (#217) · cd185d1f
      Edward Z. Yang authored
      * New entry points are packaging/build_wheel.sh and packaging/build_conda.sh. The only mandatory environment variable you have to set is PYTHON_VERSION
      * CircleCI configuration uses 2.1-style parametrized builds to let you toggle python version, etc. as you do builds. We create a separate job per build configuration for maximum parallelism
      * build_tools/packaging got moved to packaging, to be in-line with directory structure in torchvision
      * The build_conda.sh and build_wheel.sh delegate most of the heavy lifting to pkg_helpers.bash, which defines a number of bash functions for performing common operations. The intent is that I'll copy-paste this file between other domain API projects.
      * TORCHAUDIO_ prefix removed from envvars, so that I can more easily share packaging scripts between projects
      * BUILD_VERSION is completely gone; just change the version number if you need to rebuild
      * No more logic for cloning and checking out a fresh copy of torchaudio
      cd185d1f