Skip to content

Commit

Permalink
chore(deps)!: bump ort
Browse files Browse the repository at this point in the history
  • Loading branch information
qryxip committed Nov 24, 2024
1 parent 38517cc commit d43cd83
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 18 deletions.
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.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ windows = "0.43.0"
zip = "0.6.3"

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

[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

0 comments on commit d43cd83

Please sign in to comment.