File indexing completed on 2025-02-21 10:12:22
0001
0002
0003
0004
0005 #ifndef QBENCHMARKMETRIC_H
0006 #define QBENCHMARKMETRIC_H
0007
0008 #include <QtTest/qttestglobal.h>
0009
0010 QT_BEGIN_NAMESPACE
0011
0012
0013 namespace QTest {
0014
0015 enum QBenchmarkMetric {
0016 FramesPerSecond,
0017 BitsPerSecond,
0018 BytesPerSecond,
0019 WalltimeMilliseconds,
0020 CPUTicks,
0021 InstructionReads,
0022 Events,
0023 WalltimeNanoseconds,
0024 BytesAllocated,
0025 CPUMigrations,
0026 CPUCycles,
0027 BusCycles,
0028 StalledCycles,
0029 Instructions,
0030 BranchInstructions,
0031 BranchMisses,
0032 CacheReferences,
0033 CacheReads,
0034 CacheWrites,
0035 CachePrefetches,
0036 CacheMisses,
0037 CacheReadMisses,
0038 CacheWriteMisses,
0039 CachePrefetchMisses,
0040 ContextSwitches,
0041 PageFaults,
0042 MinorPageFaults,
0043 MajorPageFaults,
0044 AlignmentFaults,
0045 EmulationFaults,
0046 RefCPUCycles,
0047 };
0048
0049 }
0050
0051 QT_END_NAMESPACE
0052
0053 #endif