We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69e2afe commit 9dffd2eCopy full SHA for 9dffd2e
profiling/energy-profiler/common/daemon.hpp
@@ -7,7 +7,7 @@
7
class Daemon {
8
public:
9
Daemon(std::function<void()> func, int interval_ms)
10
- : interval_(interval_ms), func_(func) {};
+ : interval_(interval_ms), func_(func){};
11
12
void start();
13
void tick();
profiling/energy-profiler/common/timer_system.hpp
@@ -70,8 +70,7 @@ class KernelTimerTool {
70
Kokkos_Profiling_KokkosPDeviceInfo* deviceInfo);
71
void finalize_library();
72
73
- void begin_parallel_for(const char* name, const uint32_t devID,
74
- uint64_t kID);
+ void begin_parallel_for(const char* name, const uint32_t devID, uint64_t kID);
75
void end_parallel_for(uint64_t kID);
76
77
void begin_parallel_scan(const char* name, const uint32_t devID,
0 commit comments