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

voice_synthesizer.rs → synthesizer.rs #657

Merged
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 crates/voicevox_core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ mod metas;
mod numerics;
mod result;
mod status;
mod synthesizer;
mod user_dict;
mod version;
mod voice_model;
mod voice_synthesizer;

#[doc(hidden)]
pub mod __internal;
Expand All @@ -36,9 +36,9 @@ pub use self::result::*;
pub use self::voice_model::*;
pub use devices::*;
pub use manifest::*;
pub use synthesizer::*;
pub use user_dict::*;
pub use version::*;
pub use voice_synthesizer::*;

use derive_getters::*;
use derive_new::new;
Expand Down
2 changes: 1 addition & 1 deletion crates/voicevox_core_c_api/tests/e2e/log_mask.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ impl Utf8Output {
pub(crate) fn mask_windows_video_cards(self) -> Self {
self.mask_stderr(
static_regex!(
r#"(?m)^\{timestamp\} INFO voicevox_core::voice_synthesizer: 検出されたGPU \(DirectMLには1番目のGPUが使われます\):(\n\{timestamp\} INFO voicevox_core::voice_synthesizer: - "[^"]+" \([0-9.]+ [a-zA-Z]+\))+"#,
r#"(?m)^\{timestamp\} INFO voicevox_core::synthesizer: 検出されたGPU \(DirectMLには1番目のGPUが使われます\):(\n\{timestamp\} INFO voicevox_core::synthesizer: - "[^"]+" \([0-9.]+ [a-zA-Z]+\))+"#,
),
"{windows-video-cards}",
)
Expand Down
Loading