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

自動ビルド: コアを0.10.preview.3に更新, #286 の動作修正 #287

Merged
merged 11 commits into from
Jan 14, 2022

Conversation

aoirint
Copy link
Member

@aoirint aoirint commented Jan 14, 2022

内容

#286 がマージされたので、自動ビルドに使用するコアをCPUスレッド数を指定する機能が追加された0.10.preview.3に更新して、動作するようにします(忘れてました)。

0.10.preview.2でmetasのスタイル順が入れ替わった(あまあまが先頭に来ていたのを修正)のも反映されます。

docker pull aoirint/voicevox_engine:cpu-ubuntu18.04-0.10.preview.0-aoirint-13

export VV_CPU_NUM_THREADS=4
docker run --rm -it -p '127.0.0.1:50021:50021' -e VV_CPU_NUM_THREADS aoirint/voicevox_engine:cpu-ubuntu18.04-0.10.preview.0-aoirint-13
# Or
docker run --rm -it -p '127.0.0.1:50021:50021' -e VV_CPU_NUM_THREADS=4 aoirint/voicevox_engine:cpu-ubuntu18.04-0.10.preview.0-aoirint-13

関連 Issue

ref #286

スクリーンショット・動画など

その他

@coveralls
Copy link

coveralls commented Jan 14, 2022

Pull Request Test Coverage Report for Build 1696714473

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 86.415%

Totals Coverage Status
Change from base Build 1696484804: 0.0%
Covered Lines: 687
Relevant Lines: 795

💛 - Coveralls

@github-actions
Copy link

github-actions bot commented Jan 14, 2022

Coverage Result

Resultを開く
Name Stmts Miss Cover
voicevox_engine/init.py 0 0 coverage-100%
voicevox_engine/acoustic_feature_extractor.py 85 0 coverage-100%
voicevox_engine/dev/synthesis_engine/init.py 2 0 coverage-100%
voicevox_engine/dev/synthesis_engine/mock.py 29 0 coverage-100%
voicevox_engine/full_context_label.py 167 5 coverage-97%
voicevox_engine/kana_parser.py 89 1 coverage-99%
voicevox_engine/model.py 71 7 coverage-90%
voicevox_engine/mora_list.py 4 0 coverage-100%
voicevox_engine/preset/Preset.py 12 0 coverage-100%
voicevox_engine/preset/PresetLoader.py 34 1 coverage-97%
voicevox_engine/preset/init.py 3 0 coverage-100%
voicevox_engine/synthesis_engine/init.py 5 0 coverage-100%
voicevox_engine/synthesis_engine/forwarder.py 76 66 coverage-13%
voicevox_engine/synthesis_engine/make_synthesis_engine.py 25 20 coverage-20%
voicevox_engine/synthesis_engine/synthesis_engine.py 107 0 coverage-100%
voicevox_engine/synthesis_engine/synthesis_engine_base.py 49 5 coverage-90%
voicevox_engine/utility/init.py 2 0 coverage-100%
voicevox_engine/utility/connect_base64_waves.py 35 3 coverage-91%
TOTAL 795 108 coverage-86%

@aoirint aoirint marked this pull request as ready for review January 14, 2022 06:59
Copy link
Member

@y-chan y-chan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTMです! Draft外れてると思ってました...

@aoirint aoirint marked this pull request as draft January 14, 2022 07:15
@aoirint
Copy link
Member Author

aoirint commented Jan 14, 2022

あ、Readyにしてましたが、#286 関連のバグがあったので、直すためにDraftに戻しました!

@aoirint aoirint changed the title 自動ビルド: コアを0.10.preview.3に更新 自動ビルド: コアを0.10.preview.3に更新、 #286 の動作修正 Jan 14, 2022
@aoirint aoirint changed the title 自動ビルド: コアを0.10.preview.3に更新、 #286 の動作修正 自動ビルド: コアを0.10.preview.3に更新, #286 の動作修正 Jan 14, 2022
@AsPulse
Copy link
Contributor

AsPulse commented Jan 14, 2022

修正、ありがとうございます!
VV_CPU_NUM_THREADS環境変数も、--cpu_num_threadsも指定されていない場合ってどうなりますかね...?

@aoirint
Copy link
Member Author

aoirint commented Jan 14, 2022

環境変数CPU_NUM_THREADSは他のアプリケーションと重複して誤動作しやすそうなことに気づいたので、VV_CPU_NUM_THREADSにリネームしました。

環境変数を指定した場合に、型変換が抜けていてコアを初期化できなかったので修正しました。
丁寧にstrからintへの型変換を書いてもよかったかもですが、実装に迷った(長くなる、Noneの扱い)のでargparseに任せてみました。
数値として不正な値が設定されていた場合、引数のパースのタイミングでintへの変換に失敗してエラー終了します。

環境変数に空文字列が設定されていた場合に数値として不正とみなされてしまうので、Noneとして扱うためにos.getenv("VV_CPU_NUM_THREADS") or Noneという書き方をしています。

VV_CPU_NUM_THREADS環境変数も、--cpu_num_threadsも指定されていない場合

@AsPulse cpu_num_threadsはNoneになるので、デフォルト動作(50%)です!

@aoirint aoirint requested a review from y-chan January 14, 2022 08:10
@aoirint aoirint marked this pull request as ready for review January 14, 2022 08:10
run.py Show resolved Hide resolved
Copy link
Contributor

@AsPulse AsPulse left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!(バグ修正もありがとうございました!)

Copy link
Member

@takana-v takana-v left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!
マージ可能ですが、@y-chanの再レビューがまだなので一応待っておきます。

Copy link
Member

@y-chan y-chan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!
マージしますね...!

@y-chan y-chan merged commit d7c5d56 into VOICEVOX:master Jan 14, 2022
@Hiroshiba
Copy link
Member

こちらのPRを反映したエンジンをビルドし始めてみました!
https://github.com/VOICEVOX/voicevox_engine/releases/tag/0.10.preview.11

@AsPulse
Copy link
Contributor

AsPulse commented Jan 14, 2022

Dockerイメージがあるとありがたいです…!

@y-chan
Copy link
Member

y-chan commented Jan 14, 2022

docker pull hiroshiba/voicevox_engine:cpu-ubuntu20.04-0.10.preview.11等で利用できると思います...!
今までのリリース分は、プレリリースを含め、すべて自動でDocker Hubにリリースされています。
https://hub.docker.com/r/hiroshiba/voicevox_engine/tags

@Hiroshiba
Copy link
Member

dockerイメージのとこにリンク書いても良いかもと思いました
https://github.com/VOICEVOX/voicevox_engine/tree/d7c5d563be3f5ddabba0b689f84999bd1810dfe4#docker-%E3%82%A4%E3%83%A1%E3%83%BC%E3%82%B8

@aoirint aoirint deleted the patch-core-preview-3 branch October 9, 2023 02:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants