summaryrefslogtreecommitdiffstats
path: root/Examples
diff options
context:
space:
mode:
authorKonstantin <const@const.me>2023-01-18 20:35:30 +0100
committerKonstantin <const@const.me>2023-01-18 20:35:30 +0100
commit11c399b70c7ad5664b6060b39632e6b9fa815350 (patch)
tree763afed51699017749d3f0398f16928aad7544a4 /Examples
parentad097a744759c6a78e1b33ea9d2b4b2af01c529d (diff)
Optional startup flags to override performance-related defaults for the compute shaders
Diffstat (limited to 'Examples')
-rw-r--r--Examples/WhisperDesktop/LoadModelDlg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Examples/WhisperDesktop/LoadModelDlg.cpp b/Examples/WhisperDesktop/LoadModelDlg.cpp
index 1b2bf03..3aa84e7 100644
--- a/Examples/WhisperDesktop/LoadModelDlg.cpp
+++ b/Examples/WhisperDesktop/LoadModelDlg.cpp
@@ -140,7 +140,7 @@ void __stdcall LoadModelDlg::poolCallback() noexcept
lmcb.cancel = nullptr;
lmcb.progress = &LoadModelDlg::progressCallback;
lmcb.pv = this;
- HRESULT hr = Whisper::loadModel( path, impl, &lmcb, &model );
+ HRESULT hr = Whisper::loadModel( path, impl, 0, &lmcb, &model );
if( SUCCEEDED( hr ) )
appState.model = model;
else