diff options
| author | Wilson Fung <[email protected]> | 2012-07-05 07:33:54 -0800 |
|---|---|---|
| committer | Andrew Boktor <[email protected]> | 2014-08-14 13:47:33 -0700 |
| commit | 6f99ffb9b171495df7ef0725f8a8cbffb8d9591c (patch) | |
| tree | 2915c2e1da7dbac024fcb5da6f845f6d47092629 /src/cuda-sim/cuda-sim.cc | |
| parent | 3d2d74e5e876e10c207756fa9b3b7508a6a92f8a (diff) | |
Adding the madp instruction, which does multiply add with carry-in. Still need to modify carry and overflow flags.
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 13317]
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 7fa13b2..752985c 100644 --- a/src/cuda-sim/cuda-sim.cc +++ b/src/cuda-sim/cuda-sim.cc @@ -565,7 +565,7 @@ void ptx_instruction::set_opcode_and_latency() break; } break; - case MAD_OP: + case MAD_OP: case MADP_OP: //MAD latency switch(get_type()){ case F32_TYPE: |
