Kernel Tuning Toolkit 2.3
 
Loading...
Searching...
No Matches
ValidationMode.h
Go to the documentation of this file.
1
4#pragma once
5
6#include <Utility/BitfieldEnum.h>
7
8namespace ktt
9{
10
15{
18 None = 0,
19
22 Running = (1 << 0),
23
26 OfflineTuning = (1 << 1),
27
30 OnlineTuning = (1 << 2),
31
35};
36
39template <>
40struct EnableBitfieldOperators<ValidationMode>
41{
44 static const bool m_Enable = true;
45};
46
47} // namespace ktt
Definition KttPlatform.h:41
ValidationMode
Definition ValidationMode.h:15