- 15 Dec, 2020 1 commit
-
-
Matti Picus authored
-
- 08 Dec, 2020 1 commit
-
-
moto authored
* Import torchaudio #1034 70f429a4 Summary: Import torchaudio #1027 0cf4b8a9 Reviewed By: vincentqb, cpuhrsch Differential Revision: D24958707 fbshipit-source-id: d06dd6b59197cc2c16bec5a9012cbf33a172b6b3 * Import torchaudio #1066 4406a6bb Summary: Import up to #1066 Reviewed By: cpuhrsch Differential Revision: D25373068 fbshipit-source-id: 890d36a25259b93428b3037c3123ff5a2cacfa04
-
- 20 Nov, 2020 1 commit
-
-
Matti Picus authored
-
- 17 Nov, 2020 1 commit
-
-
Matti Picus authored
-
- 16 Nov, 2020 1 commit
-
-
Matti Picus authored
-
- 13 Nov, 2020 2 commits
-
-
moto authored
* Import torchaudio #996 758f6c2a Reviewed By: cpuhrsch Differential Revision: D24606263 fbshipit-source-id: 4301b1df84d20c671783ec34c52d5b257374abf1 * Import torchaudio #1004 5e54c770 Summary: Import torchaudio up to #1004 5e54c770 Reviewed By: vincentqb, cpuhrsch Differential Revision: D24841498 fbshipit-source-id: 3829130636f36779d84f01ff0d0120b80b2396d7
-
Matti Picus authored
-
- 09 Nov, 2020 1 commit
-
-
moto authored
-
- 03 Nov, 2020 1 commit
-
-
moto authored
-
- 30 Oct, 2020 1 commit
-
-
moto authored
-
- 22 Oct, 2020 1 commit
-
-
Vasilis Vryniotis authored
-
- 19 Oct, 2020 1 commit
-
-
moto authored
-
- 16 Oct, 2020 1 commit
-
-
moto authored
-
- 15 Oct, 2020 1 commit
-
-
moto authored
-
- 14 Oct, 2020 1 commit
-
-
moto authored
-
- 06 Oct, 2020 1 commit
-
-
peterjc123 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>
-
- 28 Aug, 2020 1 commit
-
-
moto authored
When running smoke test, proper way to install conda package is to install from workspace, instead of installing from archive. Otherwise the dependencies are not properly installed https://github.com/conda/conda/issues/1884 For this, we pass the whole `conda-bld` directory from conda package build job to upload job then smoke test job. `torchaudio` does not have a mandatory third-party python package dependency, so this was not an issue. See also https://github.com/pytorch/text/pull/803
-
- 12 Aug, 2020 2 commits
- 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
-
- 06 Aug, 2020 1 commit
-
-
moto authored
This CC adds CI test to check the backward compatibility of Torchscript functions/object dumps. The job first dumps Torchscript objects into file from torchaudio 0.6.0 release environment (x Python 3.6, 3.7, 3,8), then load & run the function in master build (in Python 3.6, 3.7, 3.8). If there is a BC-breaking change in master build, (registration schema change), then the test should fail. At this moment, `info` function does not work due to suspected bug in torch side, so the test is disabled for `info` function. See https://github.com/pytorch/pytorch/issues/42258 for the detail. Once https://github.com/pytorch/pytorch/issues/42258 is resolved we can enable it.
-
- 05 Aug, 2020 2 commits
-
-
Eli Uriegas authored
-
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😾
-
- 22 Jul, 2020 1 commit
-
-
moto authored
-
- 14 Jul, 2020 1 commit
-
-
moto authored
-
- 06 Jul, 2020 1 commit
-
-
moto authored
* Pin llvmlite * Add comments
-
- 01 Jul, 2020 2 commits
- 26 Jun, 2020 1 commit
-
-
moto authored
-
- 24 Jun, 2020 1 commit
-
-
Eli Uriegas authored
* packaging: Add test channels to pytorch dependency resolution Signed-off-by:
Eli Uriegas <eliuriegas@fb.com> * .circleci: Add test channel to smoke tests Signed-off-by:
Eli Uriegas <eliuriegas@fb.com> * .circleci: Put pytorch-test into a higher priority pytorch-nightly was getting prioritized over pytorch-nightly which shouldn't be the case Signed-off-by:
Eli Uriegas <eliuriegas@fb.com>
-
- 23 Jun, 2020 3 commits
-
-
moto authored
-
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.
-
moto authored
This PR refactors cache generation mechanism by introducing dedicated command and bust cache on daily basis. At this moment, Windows unittest job for 3.6 and 3.7 are broken because of broken scipy but the environment is cached this persists until the next week. As we have nightly build, we do not need to keep cache for one week.
-
- 22 Jun, 2020 1 commit
-
-
Eli Uriegas authored
-
- 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
-