gpu-compute, mem-ruby, configs: Add GCN3 ISA support to GPU model

Change-Id: Ibe46970f3ba25d62ca2ade5cbc2054ad746b2254
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/29912
Reviewed-by: Anthony Gutierrez <anthony.gutierrez@amd.com>
Reviewed-by: Jason Lowe-Power <power.jg@gmail.com>
Maintainer: Anthony Gutierrez <anthony.gutierrez@amd.com>
Tested-by: kokoro <noreply+kokoro@google.com>
This commit is contained in:
Tony Gutierrez
2018-05-01 16:59:35 -04:00
committed by Anthony Gutierrez
parent b0eac7857a
commit b8da9abba7
86 changed files with 10299 additions and 3734 deletions

View File

@@ -59,8 +59,8 @@ GPUExecContext::readMiscReg(int opIdx) const
}
void
GPUExecContext::writeMiscReg(int opIdx, RegVal operandVal)
GPUExecContext::writeMiscReg(int opIdx, RegVal val)
{
assert(gpuISA);
gpuISA->writeMiscReg(opIdx, operandVal);
gpuISA->writeMiscReg(opIdx, val);
}