1. 23 Sep, 2022 1 commit
  2. 15 Sep, 2022 1 commit
    • Andrey Talman's avatar
      Switch to use conda install action for m1 builds (#2674) · c2870b6e
      Andrey Talman authored
      Summary:
      Usage setup-minicoda action for m1 build
      We want to try to address space issues on m1. The following action:
      ```
      pytorch/test-infra/.github/actions/setup-miniconda@main
      ```
      
      Sets up miniconda in temp folder which should be cleaned between runs
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2674
      
      Reviewed By: jeanschmidt
      
      Differential Revision: D39540481
      
      Pulled By: atalman
      
      fbshipit-source-id: 0596598ab6b2f99c775aa0c9e14a3a388533068d
      c2870b6e
  3. 09 Sep, 2022 1 commit
  4. 26 Aug, 2022 1 commit
  5. 25 Aug, 2022 1 commit
  6. 23 Aug, 2022 1 commit
  7. 15 Aug, 2022 1 commit
  8. 02 Aug, 2022 1 commit
  9. 21 Jul, 2022 1 commit
  10. 15 Jun, 2022 4 commits
  11. 14 Jun, 2022 1 commit
  12. 13 Jun, 2022 1 commit
  13. 10 Jun, 2022 1 commit
  14. 03 Jun, 2022 1 commit
  15. 31 May, 2022 1 commit
  16. 13 May, 2022 1 commit
    • moto's avatar
      Move Streamer API out of prototype (#2378) · 72b712a1
      moto authored
      Summary:
      This commit moves the Streaming API out of prototype module.
      
      * The related classes are renamed as following
      
        - `Streamer` -> `StreamReader`.
        - `SourceStream` -> `StreamReaderSourceStream`
        - `SourceAudioStream` -> `StreamReaderSourceAudioStream`
        - `SourceVideoStream` -> `StreamReaderSourceVideoStream`
        - `OutputStream` -> `StreamReaderOutputStream`
      
      This change is preemptive measurement for the possibility to add
      `StreamWriter` API.
      
      * Replace BUILD_FFMPEG build arg with USE_FFMPEG
      
      We are not building FFmpeg, so USE_FFMPEG is more appropriate
      
       ---
      
      After https://github.com/pytorch/audio/issues/2377
      
      Remaining TODOs: (different PRs)
      - [ ] Introduce `is_ffmpeg_binding_available` function.
      - [ ] Refactor C++ code:
         - Rename `Streamer` to `StreamReader`.
         - Rename `streamer.[h|cpp]` to `stream_reader.[h|cpp]`.
         - Rename `prototype.cpp` to `stream_reader_binding.cpp`.
         - Introduce `stream_reader` directory.
      - [x] Enable FFmpeg in smoke test (https://github.com/pytorch/audio/issues/2381)
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2378
      
      Reviewed By: carolineechen
      
      Differential Revision: D36359299
      
      Pulled By: mthrok
      
      fbshipit-source-id: 6a57b702996af871e577fb7addbf3522081c1328
      72b712a1
  17. 11 May, 2022 1 commit
  18. 18 Feb, 2022 1 commit
  19. 26 Jan, 2022 1 commit
  20. 19 Jan, 2022 1 commit
  21. 07 Jan, 2022 1 commit
    • moto's avatar
      Enable build ffmpeg-features in all related jobs (#2140) · 565f8d41
      moto authored
      Summary:
      This commit enables ffmpeg-feature build in tests and
      binary builds of all platforms.
      (Linux/macOS/Windows x conda/wheel)
      
      It also moves the definition of BUILD_FFMPEG env vars to the
      top level `config.yml`.
      
       ---
      Manual checking if all the build log contains `libtorchaudio_ffmpeg`.
      ### binary build
      - [x] `binary_linux_conda_py3.7_cpu`
      - [x] `binary_linux_conda_py3.7_cu102`
      - [x] `binary_linux_wheel_py3.7_cpu`
      - [x] `binary_linux_wheel_py3.7_cu102`
      - [x] `binary_macos_conda_py3.7_cpu`
      - [x] `binary_macos_wheel_py3.7_cpu`
      - [x] `binary_windows_conda_py3.7_cpu`
      - [x] `binary_windows_conda_py3.7_cu113`
      - [x] `binary_windows_wheel_py3.7_cpu`
      - [x] `binary_windows_wheel_py3.7_cu113`
      
      ### test
      - [x] `unittest_linux_cpu_py3.7`
      - [x] `unittest_linux_gpu_py3.7`
      - [x] `unittest_macos_cpu_py3.7`
      - [x] `unittest_windows_cpu_py3.7`
      - [x] `unittest_windows_gpu_py3.7`
      - [x] `integration test`
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2140
      
      Reviewed By: hwangjeff
      
      Differential Revision: D33464430
      
      Pulled By: mthrok
      
      fbshipit-source-id: 2c5b72be75d49019bf1599036180d4e56074e46b
      565f8d41
  22. 23 Dec, 2021 1 commit
  23. 24 Nov, 2021 1 commit
    • Caroline Chen's avatar
      Update script for getting PR merger and labels (#2030) · 9392c9e0
      Caroline Chen authored
      Summary:
      The previous way of detecting the merger and labels given a commit hash no longer works with ShipIt, as PRs are closed and not merged and are not associated with a commit hash. To work around this, update the script to get the merger (pulled by: ) and PR number from the commit hash message, and then collect labels from the corresponding PR.
      
      Pull Request resolved: https://github.com/pytorch/audio/pull/2030
      
      Reviewed By: mthrok
      
      Differential Revision: D32634870
      
      Pulled By: carolineechen
      
      fbshipit-source-id: a8fcfc5912871d3cca056de43ab25b5d0acb2226
      9392c9e0
  24. 03 Nov, 2021 1 commit
  25. 02 Nov, 2021 4 commits
  26. 29 Oct, 2021 1 commit
  27. 28 Oct, 2021 1 commit
  28. 30 Sep, 2021 1 commit
  29. 26 Aug, 2021 1 commit
    • moto's avatar
      Default to BUILD_SOX=1 in non-Windows systems (#1725) · 89ea6955
      moto authored
      * Default to BUILD_SOX=1 in non-Windows systems
      
      Since the adaptation of CMake and restricting to the static linking of libsox,
      the build process has become much robust with libsox integration enabled.
      
      This commit makes it default behavior to build libsox integration in non-Windows systems.
      The build process still checks BUILD_SOX env var so, setting `BUILD_SOX=0` disables it.
      89ea6955
  30. 31 Jul, 2021 1 commit
  31. 18 May, 2021 1 commit
  32. 06 Apr, 2021 1 commit
  33. 30 Jun, 2020 1 commit
  34. 29 Jul, 2019 1 commit