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

Synthesizer::newを非asyncにする #671

Merged
merged 4 commits into from
Nov 3, 2023

Conversation

qryxip
Copy link
Member

@qryxip qryxip commented Nov 1, 2023

内容

Synthesizer::newにはもともとload_all_modelsというオプションがありましたが、今は #587 により無くなっています。なので今はSynthesizer::newは何のIOも重たい処理もせずに、数十μsで完了します (ちなみに数十μsの大部分はSupportedDevicesを毎回作りなおしているところかと思われます)。

なのでもうasyncは不要でもあり、適切でもなくなっているかと思いました。

関連 Issue

#545

その他

@Hiroshiba
Copy link
Member

Hiroshiba commented Nov 1, 2023

なるほどです!賛成です!

今思えば、newは必ず同期にしておくと、各言語ラッパー作る時にコンストラクタの仕様に衝突しにくい気がちょっとしました。
少し調べてみた感じ、C#がasyncなコンストラクタだめかも…?
https://stackoverflow.com/questions/8145479/can-constructors-be-async

(まあコンストラクタにせず、staticメソッドにすればが良さそうですが)

@qryxip
Copy link
Member Author

qryxip commented Nov 1, 2023

ですね。Pythonのような言語でも必ずしも狭義のコンストラクタは用意する必要は薄いかと思います(あとPythonだと、呼ぶと「asyncの方を呼べ」というTypeErrorを発する__new__を、pyiには載せない形で入れることで初学者への対応ができるんじゃないかと思っています)

ちなみにPythonでもasync def __new__というのは面倒(PyO3製クラスだと無理で、純Pythonコードのクラスでラップする必要がある)で、かつどうやらすべきでも無いようです。下手したらmypyやpyright/pylanceが混乱するかも)

@qryxip qryxip marked this pull request as ready for review November 1, 2023 19:51
Copy link
Member

@sevenc-nanashi sevenc-nanashi left a comment

Choose a reason for hiding this comment

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

Java APIのLoggerもC APIと同じように(RUNTIMEの初回アクセス)セットアップしてるので、Java APIのログが出なくなるような気がします(まだ検証してませんが)

@sevenc-nanashi
Copy link
Member

検証してきました。
出なくなっていました。

@qryxip
Copy link
Member Author

qryxip commented Nov 3, 2023

Java APIにも同様のものを入れました。
9c34bf1

Copy link
Member

@Hiroshiba Hiroshiba left a comment

Choose a reason for hiding this comment

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

LGTM!!

loggerの気づき素晴らしいと思います!!
こういう副作用はなかなか危ないかもですね…。

@Hiroshiba Hiroshiba merged commit 9ae1110 into VOICEVOX:main Nov 3, 2023
32 checks passed
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.

3 participants