arch-gcn3: Fix writelane src0,src1 usage
Src1 should only be used for lane select. The data should come from src0. Change-Id: Ibe960df2e56d351a3819b40194104d2972a5cd4c Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/29933 Tested-by: kokoro <noreply+kokoro@google.com> Maintainer: Anthony Gutierrez <anthony.gutierrez@amd.com> Reviewed-by: Anthony Gutierrez <anthony.gutierrez@amd.com> Reviewed-by: Matt Sinclair <mattdsinclair@gmail.com>
This commit is contained in:
committed by
Anthony Gutierrez
parent
bff8df2288
commit
f8e295922b
@@ -30181,7 +30181,7 @@ namespace Gcn3ISA
|
||||
assert(!(extData.NEG & 0x2));
|
||||
assert(!(extData.NEG & 0x4));
|
||||
|
||||
vdst[src1.rawData() & 0x3f] = src1.rawData();
|
||||
vdst[src1.rawData() & 0x3f] = src0.rawData();
|
||||
|
||||
vdst.write();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user