1. 16 Sep, 2019 1 commit
  2. 11 Sep, 2019 1 commit
  3. 06 Sep, 2019 1 commit
  4. 03 Sep, 2019 1 commit
  5. 29 Aug, 2019 3 commits
  6. 26 Aug, 2019 1 commit
  7. 21 Aug, 2019 1 commit
  8. 20 Aug, 2019 1 commit
  9. 19 Aug, 2019 1 commit
  10. 16 Aug, 2019 2 commits
  11. 15 Aug, 2019 1 commit
  12. 13 Aug, 2019 3 commits
  13. 08 Aug, 2019 3 commits
  14. 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
  15. 06 Aug, 2019 7 commits
  16. 02 Aug, 2019 4 commits
    • Edward Z. Yang's avatar
      Add missing build script. · a8bd18da
      Edward Z. Yang authored
      
      Signed-off-by: default avatarEdward Z. Yang <ezyang@fb.com>
      a8bd18da
    • Edward Z. Yang's avatar
      Conda nightly packaging updates. (#203) · a9bee3ed
      Edward Z. Yang authored
      Billing of changes:
      
      * Can now toggle what branch is built using BRANCH envvar
      * PyTorch nightly we were built against is hardcoded into conda meta.yaml
      * Disable Conda Python 3.5 builds as we don't have nightlies for torch at the moment
      * No more torchaudio-cpu or torchaudio-nightly suffix
      * Remove librosa from testing stanza, so that conda build works with stock anaconda channel
      * Change convention on PREFIX to be what we previously called $PREFIX/audio
      * Make build_from_source.sh cd-neutral
      
      Signed-off-by: Edward Z. Yang ezyang@fb.com
      a9bee3ed
    • Edward Z. Yang's avatar
      Make torchaudio work on Python 2. (#209) · a424509d
      Edward Z. Yang authored
      
      
      - Apply __future__ imports uniformly (future division is the biggy, but absolute
        imports mattered too)
      - Hotfix use of tempfile.TemporaryDirectory using a BC library (DO NOT
        add this library as a dependency to torchaudio; it's only for testing)
      - Replace math.gcd with fractions.gcd
      - Fix a weird pytest collection bug involving parametrized tests
      - Turn on Python 2 and Python 3.7 in Travis.
      Signed-off-by: default avatarEdward Z. Yang <ezyang@fb.com>
      a424509d
    • Vincent QB's avatar
      67f9f302
  17. 01 Aug, 2019 3 commits
  18. 31 Jul, 2019 3 commits
  19. 30 Jul, 2019 1 commit
    • Edward Z. Yang's avatar
      Make test scripts runnable without being modules. (#186) · 07b9b9ba
      Edward Z. Yang authored
      
      
      This makes it easier to test against an installed wheel, as the
      torchaudio folder is no longer preferentially picked up when
      you run a test module.
      
      I had to move all tests in subfolders into the top level test
      directory to make this work, since you can't access .. modules
      without mucking around with sys.path (which I don't want to do.)
      
      NB: this BREAKS the syntax where you can run a test by
      saying `python -m test.test`.  Instead, do `python test/test.py`
      or use the pytest runner.
      Signed-off-by: default avatarEdward Z. Yang <ezyang@fb.com>
      07b9b9ba