diff options
| author | Tor Aamodt <[email protected]> | 2010-07-20 01:08:56 -0800 |
|---|---|---|
| committer | Tor Aamodt <[email protected]> | 2010-07-20 01:08:56 -0800 |
| commit | a884b505457d48dcd2783563d407e14a607456ee (patch) | |
| tree | 4e50efd26376e2dce8c96a8b21bd57f88c74e23f /src/cuda-sim/cuda-sim.cc | |
| parent | 55106068e9087f253bbeb587a763055620e59441 (diff) | |
- adding CL_DEVICE_SINGLE_FP_CONFIG (need to get info on what it should be set to)
- bug fix for shader_core object allocation/initialization
- bug fix for ret instruction w/ OpenCL + new PTX ABI
- some formatting of output
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 6910]
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 8703922..2a41e4b 100644 --- a/src/cuda-sim/cuda-sim.cc +++ b/src/cuda-sim/cuda-sim.cc @@ -1239,7 +1239,7 @@ void function_info::ptx_exec_inst( ptx_thread_info *thread, if ( (g_ptx_sim_num_insn % 100000) == 0 ) { dim3 ctaid = thread->get_ctaid(); dim3 tid = thread->get_tid(); - printf("%u instructions simulated : ctaid=(%u,%u,%u) tid=(%u,%u,%u)\n", + printf("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); } |
