mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-24 05:47:35 -04:00
Fixed missized predicate register file.
git-svn-id: http://www.cdkersey.com/harp/harptool@29 0246edb2-e076-4747-b392-db732a341fa2
This commit is contained in:
parent
8249664deb
commit
15fc1a6d6e
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ Core::Core(const ArchDef &a, Decoder &d, MemoryUnit &mem, Word id) :
|
|||
a(a), iDec(d), mem(mem), pc(0), interruptEnable(false), supervisorMode(true),
|
||||
activeThreads(1),
|
||||
reg(a.getNThds(), vector<Word>(a.getNRegs())),
|
||||
pred(a.getNPRegs(), vector<bool>(a.getNPRegs())),
|
||||
pred(a.getNThds(), vector<bool>(a.getNPRegs())),
|
||||
shadowReg(), shadowPReg(), interruptEntry(0), id(id)
|
||||
{ reg[0][0] = (a.getNThds()<<(a.getWordSize()*8 / 2)) | id; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue