minor update
This commit is contained in:
@@ -56,6 +56,7 @@ echo "begin clustering tests..."
|
||||
./ci/blackbox.sh --driver=rtlsim --cores=2 --l2cache --app=demo --args="-n1"
|
||||
./ci/blackbox.sh --driver=rtlsim --cores=2 --clusters=2 --l3cache --app=demo --args="-n1"
|
||||
./ci/blackbox.sh --driver=rtlsim --cores=2 --clusters=2 --l2cache --l3cache --app=io_addr --args="-n1"
|
||||
./ci/blackbox.sh --driver=simx --cores=4 --clusters=2 --l2cache --app=demo --args="-n1"
|
||||
./ci/blackbox.sh --driver=simx --cores=4 --clusters=4 --l2cache --l3cache --app=demo --args="-n1"
|
||||
|
||||
echo "clustering tests done!"
|
||||
|
||||
@@ -109,7 +109,7 @@ Processor::Processor(const ArchDef& arch)
|
||||
}
|
||||
|
||||
for (uint32_t j = 0; j < cores_per_cluster; ++j) {
|
||||
auto& core = cores_.at((i * NUM_CLUSTERS) + j);
|
||||
auto& core = cores_.at((i * cores_per_cluster) + j);
|
||||
cluster_mem_rsp_ports.at(j)->bind(&core->MemRspPort);
|
||||
core->MemReqPort.bind(cluster_mem_req_ports.at(j));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user