diff --git a/crates/voicevox_core/src/nonblocking.rs b/crates/voicevox_core/src/nonblocking.rs index a8b230fa7..d65a3b7c0 100644 --- a/crates/voicevox_core/src/nonblocking.rs +++ b/crates/voicevox_core/src/nonblocking.rs @@ -9,7 +9,8 @@ //! スレッドプールのサイズは、blockingクレートの説明にある通り`$BLOCKING_MAX_THREADS`で調整すること //! ができる。 //! -//! また未調査ではあるが、[`cpu_num_threads`]を`0`にするのは適切ではない可能性がある ([VOICEVOX/voicevox_core#902])。 +//! また未調査ではあるが、このモジュールについては[`cpu_num_threads`]は物理コアの数+1を指定するのが適切な可能性がある +//! ([VOICEVOX/voicevox_core#902])。 //! //! [blocking]: https://docs.rs/crate/blocking //! [pollster]: https://docs.rs/crate/pollster diff --git a/crates/voicevox_core/src/synthesizer.rs b/crates/voicevox_core/src/synthesizer.rs index f42a870ed..c49763252 100644 --- a/crates/voicevox_core/src/synthesizer.rs +++ b/crates/voicevox_core/src/synthesizer.rs @@ -102,7 +102,8 @@ pub struct InitializeOptions { /// /// # Performance /// - /// 未調査ではあるが、[非同期版API]においては`0`にするのは適切ではない可能性がある ([VOICEVOX/voicevox_core#902])。 + /// 未調査ではあるが、[非同期版API]においては物理コアの数+1とするのが適切な可能性がある + /// ([VOICEVOX/voicevox_core#902])。 /// /// [非同期版API]: crate::nonblocking /// [VOICEVOX/voicevox_core#902]: https://github.com/VOICEVOX/voicevox_core/issues/902 diff --git a/crates/voicevox_core_python_api/python/voicevox_core/_rust/asyncio.pyi b/crates/voicevox_core_python_api/python/voicevox_core/_rust/asyncio.pyi index 8a80d7e5f..199ced742 100644 --- a/crates/voicevox_core_python_api/python/voicevox_core/_rust/asyncio.pyi +++ b/crates/voicevox_core_python_api/python/voicevox_core/_rust/asyncio.pyi @@ -157,7 +157,7 @@ class Synthesizer: acceleration_mode ハードウェアアクセラレーションモード。 cpu_num_threads - CPU利用数を指定。0を指定すると環境に合わせたCPUが利用される。未調査ではあるが、 ``0`` にするのは適切ではない可能性がある + CPU利用数を指定。0を指定すると環境に合わせたCPUが利用される。未調査ではあるが、物理コアの数+1とするのが適切な可能性がある (`VOICEVOX/voicevox_core#902 `_)。 """ diff --git a/crates/voicevox_core_python_api/python/voicevox_core/asyncio.py b/crates/voicevox_core_python_api/python/voicevox_core/asyncio.py index 4b0cc534e..b00caf6df 100644 --- a/crates/voicevox_core_python_api/python/voicevox_core/asyncio.py +++ b/crates/voicevox_core_python_api/python/voicevox_core/asyncio.py @@ -5,7 +5,7 @@ Performance ----------- -未調査ではあるが、 ``cpu_num_threads`` に ``0`` にするのは適切ではない可能性がある +未調査ではあるが、 ``cpu_num_threads`` 物理コアの数+1を指定するのが適切な可能性がある (`VOICEVOX/voicevox_core#902 `_)。 """