We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6916933 commit 8df4e81Copy full SHA for 8df4e81
src/trace.h
@@ -32,9 +32,6 @@
32
#ifndef __TRACE_H__
33
#define __TRACE_H__
34
35
-//extern unsigned long long gpu_sim_cycle;
36
-//extern unsigned long long gpu_tot_sim_cycle;
37
-
38
namespace Trace {
39
40
#define TS_TUP_BEGIN(X) enum X {
@@ -65,7 +62,7 @@ void init();
65
62
#define DPRINTF(x, ...) \
66
63
do { \
67
64
if (DTRACE(x)) { \
68
- printf(SIM_PRINT_STR, m_gpu->gpu_sim_cycle + m_gpu->gpu_tot_sim_cycle, \
+ printf(SIM_PRINT_STR, m_gpu->gpu_sim_cycle + m_gpu->gpu_tot_sim_cycle, \
69
Trace::trace_streams_str[Trace::x]); \
70
printf(__VA_ARGS__); \
71
} \
0 commit comments