Face Engine SDK  5.34.0
A face detection, recognition and tracking engine.
RuntimeStatistics.h
1 #pragma once
2 
3 #include <fsdk/Def.h>
4 #include <cstdint>
5 
6 namespace fsdk {
7 
14  uint64_t cacheSize = 0;
15  uint64_t cacheMisses = 0;
16  uint32_t numInflightTasks = 0;
17  };
18 
25  // end of VersionGroup
27 } // namespace fsdk
uint64_t cacheMisses
Number of misses through flower cache.
Definition: RuntimeStatistics.h:15
#define FSDK_API
Dummy.
Definition: Def.h:27
SDK namespace.
Definition: IAGSEstimator.h:8
Runtime statistics structure.
Definition: RuntimeStatistics.h:13
FSDK_API RuntimeStatistics getRuntimeStatistics() noexcept
Get runtime statistics from flower runtime.
uint64_t cacheSize
Number of flower runtime program instances currently stored in flower cache.
Definition: RuntimeStatistics.h:14
Common SDK definitions.
uint32_t numInflightTasks
Number async tasks currently executed in runtime cpu threadpool.
Definition: RuntimeStatistics.h:16