diff options
| author | Mahmoud <[email protected]> | 2019-06-18 19:23:06 -0400 |
|---|---|---|
| committer | Mahmoud <[email protected]> | 2019-06-18 19:23:06 -0400 |
| commit | 8b276989af2f82ffc51306016409e01156678273 (patch) | |
| tree | 1067db8f7ce8a2ed11cc9e326adfd3e513afc9b7 /src/cuda-sim/cuda-sim.cc | |
| parent | f025d73e8fc28f815e5d34b4e1427ed1918e8555 (diff) | |
fixing shuffle inst bug
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 f7bb9cc..4c0fc58 100644 --- a/src/cuda-sim/cuda-sim.cc +++ b/src/cuda-sim/cuda-sim.cc @@ -873,7 +873,7 @@ void ptx_instruction::set_opcode_and_latency() op=TENSOR_CORE_OP; break; case SHFL_OP: - latency = 32; + latency = 4; initiation_interval = 4; break; default: |
