Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pytorch 1.10.x CI #328

Merged
merged 4 commits into from
Feb 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
matrix:
python-version: [3.6]
# 1.6 is failed on cpu: https://github.com/kan-bayashi/ParallelWaveGAN/issues/198
pytorch-version: [1.4, 1.5.1, 1.7.1, 1.8.1, 1.9]
pytorch-version: [1.4, 1.5.1, 1.7.1, 1.8.1, 1.9, 1.10.2]
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v2
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
max-parallel: 10
matrix:
python-version: [3.7]
pytorch-version: [1.9]
pytorch-version: [1.10.2]
config:
- "parallel_wavegan.v1.debug.yaml"
- "melgan.v1.debug.yaml"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ This repository is tested on Ubuntu 20.04 with a GPU Titan V.
- sox (you can install via `sudo apt install sox` in ubuntu)

Different cuda version should be working but not explicitly tested.
All of the codes are tested on Pytorch 1.4, 1.5.1, 1.7.1, 1.8.1, and 1.9.
All of the codes are tested on Pytorch 1.4, 1.5.1, 1.7.1, 1.8.1, 1.9 and 10.2.

Pytorch 1.6 works but there are some issues in cpu mode (See #198).

Expand Down Expand Up @@ -444,7 +444,7 @@ $ parallel-wavegan-decode \

## Notes

The terms of use follow that of each corpus. Please carefully check by yourself.
The terms of use of the pretrained model follow that of each corpus used for the training. Please carefully check by yourself.

## References

Expand Down
2 changes: 1 addition & 1 deletion parallel_wavegan/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-

__version__ = "0.5.3"
__version__ = "0.5.4"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

requirements = {
"install": [
"torch>=1.0.1",
"torch>=1.4",
"setuptools>=38.5.1",
"librosa>=0.8.0",
"soundfile>=0.10.2",
Expand Down Expand Up @@ -69,7 +69,7 @@
dirname = os.path.dirname(__file__)
setup(
name="parallel_wavegan",
version="0.5.3",
version="0.5.4",
url="http://github.com/kan-bayashi/ParallelWaveGAN",
author="Tomoki Hayashi",
author_email="hayashi.tomoki@g.sp.m.is.nagoya-u.ac.jp",
Expand Down