diff options
| author | Tor Aamodt <[email protected]> | 2018-04-11 14:33:53 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-04-11 14:33:53 -0700 |
| commit | cdb59de6dc329ce5777e3c961c09d26f37d32fec (patch) | |
| tree | d5107199f935391aead8e2415db8931c9fe91805 /src/cuda-sim/cuda-sim.cc | |
| parent | 2221d208a745a098a60b0d24c05007e92aaba092 (diff) | |
| parent | 89094df5b4e861b104393ea0f41886494a7f26a4 (diff) | |
Merge pull request #65 from tgrogers/dev
Bunch of changes made to 3.x that help with data collection
Diffstat (limited to 'src/cuda-sim/cuda-sim.cc')
| -rw-r--r-- | src/cuda-sim/cuda-sim.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cuda-sim/cuda-sim.cc b/src/cuda-sim/cuda-sim.cc index d4ace76..a34b99b 100644 --- a/src/cuda-sim/cuda-sim.cc +++ b/src/cuda-sim/cuda-sim.cc @@ -1408,7 +1408,7 @@ void ptx_thread_info::ptx_exec_inst( warp_inst_t &inst, unsigned lane_id) if ( (g_ptx_sim_num_insn % 100000) == 0 ) { dim3 ctaid = get_ctaid(); dim3 tid = get_tid(); - printf("GPGPU-Sim PTX: %u instructions simulated : ctaid=(%u,%u,%u) tid=(%u,%u,%u)\n", + DPRINTF(LIVENESS, "GPGPU-Sim PTX: %u instructions simulated : ctaid=(%u,%u,%u) tid=(%u,%u,%u)\n", g_ptx_sim_num_insn, ctaid.x,ctaid.y,ctaid.z,tid.x,tid.y,tid.z ); fflush(stdout); } |
