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

chore(deps)!: bump ort #876

Merged
merged 1 commit into from
Nov 26, 2024
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 Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ zip = "0.6.3"

[workspace.dependencies.voicevox-ort]
git = "https://github.com/VOICEVOX/ort.git"
rev = "8627833456a69e7841ae2a29fd184752df8de8d9"
rev = "17f741301db0bb08da0eafe8a338e5efd8a4b5df"

[workspace.dependencies.open_jtalk]
git = "https://github.com/VOICEVOX/open_jtalk-rs.git"
Expand Down
2 changes: 1 addition & 1 deletion crates/voicevox_core_c_api/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ fn init_logger_once() {
.with_env_filter(if env::var_os(EnvFilter::DEFAULT_ENV).is_some() {
EnvFilter::from_default_env()
} else {
"error,voicevox_core=info,voicevox_core_c_api=info,ort=info".into()
"error,voicevox_core=info,voicevox_core_c_api=info,ort=warn".into()
})
.with_timer(local_time as fn(&mut Writer<'_>) -> _)
.with_ansi(ansi)
Expand Down
14 changes: 1 addition & 13 deletions crates/voicevox_core_c_api/tests/e2e/snapshots.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,10 @@ metas = '''
}
]'''
stderr.windows = '''
{timestamp} INFO ort: Loaded ONNX Runtime dylib with version '{onnxruntime_version}'
{windows-video-cards}
{timestamp} INFO voicevox_core::synthesizer::inner: CPUを利用します
'''
stderr.unix = '''
{timestamp} INFO ort: Loaded ONNX Runtime dylib with version '{onnxruntime_version}'
{timestamp} INFO voicevox_core::synthesizer::inner: CPUを利用します
'''

Expand Down Expand Up @@ -114,19 +112,15 @@ result_messages.24 = "ユーザー辞書の単語のバリデーションに失
result_messages.25 = "UUIDの変換に失敗しました"
result_messages.28 = "モデルの形式が不正です"
result_messages.29 = "推論ライブラリのロードまたは初期化ができませんでした"
stderr = '''
{timestamp} INFO ort: Loaded ONNX Runtime dylib with version '{onnxruntime_version}'
'''
stderr = ''

[simple_tts]
output."こんにちは、音声合成の世界へようこそ".wav_length = 176172
stderr.windows = '''
{timestamp} INFO ort: Loaded ONNX Runtime dylib with version '{onnxruntime_version}'
{windows-video-cards}
{timestamp} INFO voicevox_core::synthesizer::inner: CPUを利用します
'''
stderr.unix = '''
{timestamp} INFO ort: Loaded ONNX Runtime dylib with version '{onnxruntime_version}'
{timestamp} INFO voicevox_core::synthesizer::inner: CPUを利用します
'''

Expand Down Expand Up @@ -183,35 +177,29 @@ metas = '''
}
]'''
stderr.windows = '''
{timestamp} INFO ort: Loaded ONNX Runtime dylib with version '{onnxruntime_version}'
{windows-video-cards}
{timestamp} INFO voicevox_core::synthesizer::inner: CPUを利用します
'''
stderr.unix = '''
{timestamp} INFO ort: Loaded ONNX Runtime dylib with version '{onnxruntime_version}'
{timestamp} INFO voicevox_core::synthesizer::inner: CPUを利用します
'''

[tts_via_audio_query]
output."こんにちは、音声合成の世界へようこそ".wav_length = 176172
stderr.windows = '''
{timestamp} INFO ort: Loaded ONNX Runtime dylib with version '{onnxruntime_version}'
{windows-video-cards}
{timestamp} INFO voicevox_core::synthesizer::inner: CPUを利用します
'''
stderr.unix = '''
{timestamp} INFO ort: Loaded ONNX Runtime dylib with version '{onnxruntime_version}'
{timestamp} INFO voicevox_core::synthesizer::inner: CPUを利用します
'''

[user_dict_load]
stderr.windows = '''
{timestamp} INFO ort: Loaded ONNX Runtime dylib with version '{onnxruntime_version}'
{windows-video-cards}
{timestamp} INFO voicevox_core::synthesizer::inner: CPUを利用します
'''
stderr.unix = '''
{timestamp} INFO ort: Loaded ONNX Runtime dylib with version '{onnxruntime_version}'
{timestamp} INFO voicevox_core::synthesizer::inner: CPUを利用します
'''

Expand Down
Loading