Skip to content

Commit

Permalink
voice_synthesizer.rs → synthesizer.rs (#657)
Browse files Browse the repository at this point in the history
  • Loading branch information
qryxip authored Oct 25, 2023
1 parent f84c192 commit dc8c3db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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
File renamed without changes.
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

0 comments on commit dc8c3db

Please sign in to comment.