- 06 Apr, 2021 1 commit
-
-
moto authored
This code was added as a part of investigation of inconsistent behavior of file-like object support. Now the investigation is done and this code does not provide much insight yet adding a bunch of lines to the log, so this PR removes it.
-
- 12 Mar, 2021 1 commit
-
-
Rahul Amaram authored
-
- 23 Feb, 2021 1 commit
-
-
Eli Uriegas authored
Numpy is a dependency of pytorch so we should let it get resolved as it install pytorch Signed-off-by:Eli Uriegas <eliuriegas@fb.com>
-
- 19 Feb, 2021 1 commit
-
-
Eli Uriegas authored
Signed-off-by:Eli Uriegas <eliuriegas@fb.com>
-
- 09 Feb, 2021 1 commit
-
-
moto authored
-
- 04 Feb, 2021 1 commit
-
-
moto authored
* Switch to cmake for build * Hide symbols
-
- 03 Feb, 2021 1 commit
-
-
moto authored
So that when a test fails in flaky manner, we can look into the difference.
-
- 02 Feb, 2021 1 commit
-
-
Vincent QB authored
-
- 26 Jan, 2021 1 commit
-
-
moto authored
-
- 21 Jan, 2021 1 commit
-
-
moto authored
* Do not install sox system-wide, so that it will never get mixed up with static one torchaudio builds * Do not install cmake system-wide * Move libsndfile installation to Docker image
-
- 12 Jan, 2021 1 commit
-
- 08 Jan, 2021 1 commit
-
-
moto authored
-
- 07 Jan, 2021 1 commit
-
-
moto authored
-
- 05 Jan, 2021 1 commit
-
-
Vincent QB authored
-
- 09 Nov, 2020 1 commit
-
-
moto authored
-
- 30 Oct, 2020 1 commit
-
-
moto authored
-
- 22 Oct, 2020 1 commit
-
-
Vasilis Vryniotis authored
-
- 16 Oct, 2020 1 commit
-
-
moto authored
-
- 23 Sep, 2020 1 commit
-
- 03 Sep, 2020 1 commit
-
-
Eli Uriegas authored
Upstream is on 9.4.1 and we were experiencing issues when conda-build was attempting to check for overlinking and failed out due to some files not existing in xcode 9.0 Signed-off-by:Eli Uriegas <eliuriegas@fb.com>
-
- 12 Aug, 2020 1 commit
-
-
moto authored
-
- 07 Aug, 2020 1 commit
-
-
moto authored
librosa 0.8.0 has been released which include fix for https://github.com/librosa/librosa/issues/1160 at https://github.com/librosa/librosa/pull/1164
-
- 05 Aug, 2020 1 commit
-
-
moto authored
We have been running unit test with editable installation. (i.e. `python setup.py develop`), with which we missed issues like #842. This CC makes installation in CI non-editable, and change test directory structure so that the source code will not shadow the installed version of `torchaudio`. With simple `pytest test`, `pytest` modifies `sys.path` and prepend checked out repository, which shadows the installed version. To remedy this, the whole test suites has been moved from `./test` to `./test/torchaudio_unittest`. This adds nice module structure to our test code and we can do absolute import in each test module, which makes it possible again to run test with `python -m unittest torchaudio_unittest/XXX.py` This change does not affect the regular development process (`python setup.py develop` && `pytest test`)
-
- 31 Jul, 2020 1 commit
-
-
moto authored
Currently our test suites automatically/silently skip tests on C++ extension if it is not available. This is nice in local env, but in CI these tests should be enforced and reported as failure if C++ extension is not available. This PR adds switch for making tests fail if C++ extension is not available, and make CI for *nix fail if that's the case.
-
- 29 Jul, 2020 1 commit
-
-
moto authored
Currently macOS CI job takes twice the time of linux unit tests. This PR uses `pytest-xdist` to run unit tests in parallel on macOS CI job. Interestingly applying the same technique to linux unit tests make the test execution longer. So the change is only applied to macOS. macOS 27 mins -> 17 mins
😸 linux 14 mins -> 1 hours😾
-
- 14 Jul, 2020 1 commit
-
-
moto authored
-
- 06 Jul, 2020 1 commit
-
-
moto authored
* Pin llvmlite * Add comments
-
- 01 Jul, 2020 1 commit
-
-
moto authored
* Use cmake for third party * Apply patch to libmad * Update gitignore * Update docker test image
-
- 26 Jun, 2020 1 commit
-
-
moto authored
-
- 23 Jun, 2020 1 commit
-
-
moto authored
In #728, linux unit test switches to libsox provided by apt. For CPU jobs this is fine because all the job steps share the same Docker container, but on CPU job, each job step runs a script in a new Docker container, so libsox installed in a step is not available to the subsequent steps. To fix this, this PR moves the installation of libsox and sox to Docker build.
-
- 19 Jun, 2020 1 commit
-
-
moto authored
This is a part of PRs to add new "sox_io" backend #726, and depends on #718. This PR adds `info` function to "sox_io" backend, which allows users to fetch some metadata of an audio file. At this moment, the information retrieved are; - Number of samples in the audio file - Sampling rate - Number of channels
-
- 15 Jun, 2020 1 commit
-
-
peterjc123 authored
-
- 03 Jun, 2020 1 commit
-
-
Bhargav Kathivarapu authored
* Migrate fbank tests * Update CCI job environment * Remove invalid test cases Signed-off-by:Bhargav Kathivarapu <bhargavkathivarapu31@gmail.com>
-
- 01 Jun, 2020 1 commit
-
-
moto authored
* Use env var for switching SoX build and default to not * Update README * Fix packaging/CI script
-
- 28 May, 2020 1 commit
-
-
moto authored
* Separate style check from unit test * TEST flake8 fail * TEST clang-format fail * Revert "TEST flake8 fail" This reverts commit 88d90185cefe294b9a662129a05c2e26a9844fe4. * Revert "TEST clang-format fail" This reverts commit 93517d1ccba650a6ccd813268fd73a4fd63b252c.
-
- 27 May, 2020 1 commit
-
-
moto authored
* Clean up extension build mechanism and extension location * Add back the switch to depend on external sox * Remove print * Fix
-
- 06 May, 2020 1 commit
-
-
moto authored
* Add GPU test * Run only on master
-
- 04 May, 2020 1 commit
-
-
peterjc123 authored
* Turn on tests when building through conda-build * skip one failling test on windows. * Switch to unittest * Fix conda env activation * add linux only condition * Fix librosa installation * conda-forge channel as a fallback * Revert "conda-forge channel as a fallback" This reverts commit 8c15f6638e34792640a3de3e057d9c2995425180. * Try the pytorch way * Use conda-forge * Disable conda-forge * Install future at setup env * Move linux unittest CI job tools to dedicated directory * Restore Linux scripts and move the updated souces to a new subdir * Add back future * Remove comments Co-authored-by:
Vincent Quenneville-Belair <vincentqb@gmail.com> Co-authored-by:
moto <855818+mthrok@users.noreply.github.com>
-