summaryrefslogtreecommitdiffstats
path: root/Whisper/Utils/ProfileCollection.cpp
diff options
context:
space:
mode:
authorKonstantin <const@const.me>2023-01-16 19:32:49 +0100
committerKonstantin <const@const.me>2023-01-16 19:32:49 +0100
commit00fa441b1cfbc4fa9cdab45cb9ed4ff115c402b0 (patch)
tree0ec71ca159e10783009149095edba428660e6c24 /Whisper/Utils/ProfileCollection.cpp
parent843a2a6ca6ea47c5ac4889a281badfc808d0ea01 (diff)
Bugfix, failed C++ with the lack of move constructor in the CPU profiler RAII class
Diffstat (limited to 'Whisper/Utils/ProfileCollection.cpp')
-rw-r--r--Whisper/Utils/ProfileCollection.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Whisper/Utils/ProfileCollection.cpp b/Whisper/Utils/ProfileCollection.cpp
index 2fc5919..eaf737c 100644
--- a/Whisper/Utils/ProfileCollection.cpp
+++ b/Whisper/Utils/ProfileCollection.cpp
@@ -50,9 +50,11 @@ namespace
#define V(x) case eCpuBlock::x: return #x
V( LoadModel );
V( Run );
+ V( Callbacks );
V( Spectrogram );
V( Sample );
V( VAD );
+ V( Encode );
V( Decode );
V( DecodeStep );
V( DecodeLayer );