summaryrefslogtreecommitdiffstats
path: root/Whisper/Utils/ProfileCollection.cpp
diff options
context:
space:
mode:
authorKonstantin <const@const.me>2023-01-16 19:41:42 +0100
committerKonstantin <const@const.me>2023-01-16 19:41:42 +0100
commitaaeab774c3c8e30b2925620fc3d2a34e5f53be4c (patch)
treeb70655af9f6199aa0e59f87dac9c98183be93f7e /Whisper/Utils/ProfileCollection.cpp
parent00fa441b1cfbc4fa9cdab45cb9ed4ff115c402b0 (diff)
Bugfix: when processing files, “Run” CPU block was erroneously measured twice
Diffstat (limited to 'Whisper/Utils/ProfileCollection.cpp')
-rw-r--r--Whisper/Utils/ProfileCollection.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Whisper/Utils/ProfileCollection.cpp b/Whisper/Utils/ProfileCollection.cpp
index eaf737c..a463655 100644
--- a/Whisper/Utils/ProfileCollection.cpp
+++ b/Whisper/Utils/ProfileCollection.cpp
@@ -49,6 +49,7 @@ namespace
{
#define V(x) case eCpuBlock::x: return #x
V( LoadModel );
+ V( RunComplete );
V( Run );
V( Callbacks );
V( Spectrogram );