mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-23 21:39:10 -04:00
Merge branch 'develop' of https://github.com/vortexgpgpu/vortex into develop
This commit is contained in:
commit
e3090930c0
1 changed files with 3 additions and 3 deletions
|
@ -207,7 +207,7 @@ void LsuUnit::tick() {
|
|||
for (uint32_t t = 1; t < num_lanes_; ++t) {
|
||||
if (!trace->tmask.test(t0 + t))
|
||||
continue;
|
||||
auto mem_addr = trace_data->mem_addrs.at(t).addr & ~addr_mask;
|
||||
auto mem_addr = trace_data->mem_addrs.at(t + t0).addr & ~addr_mask;
|
||||
matches += (addr0 == mem_addr);
|
||||
}
|
||||
#ifdef LSU_DUP_ENABLE
|
||||
|
@ -229,7 +229,7 @@ void LsuUnit::tick() {
|
|||
continue;
|
||||
|
||||
auto& dcache_req_port = core_->smem_demuxs_.at(t)->ReqIn;
|
||||
auto mem_addr = trace_data->mem_addrs.at(t);
|
||||
auto mem_addr = trace_data->mem_addrs.at(t + t0);
|
||||
auto type = core_->get_addr_type(mem_addr.addr);
|
||||
|
||||
MemReq mem_req;
|
||||
|
@ -324,4 +324,4 @@ void SfuUnit::tick() {
|
|||
break; // single block
|
||||
}
|
||||
++input_idx_;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue