Changes to function calling in each module
This commit is contained in:
parent
9c6446d06c
commit
05d5a79807
1 changed files with 2 additions and 2 deletions
4
main.cpp
4
main.cpp
|
@ -21,8 +21,8 @@ int sc_main(int argc, char* argv[]) {
|
||||||
// Create an array of Interposer Interface instances
|
// Create an array of Interposer Interface instances
|
||||||
InterposerInterface* interposers[num_chiplets];
|
InterposerInterface* interposers[num_chiplets];
|
||||||
ChipletInterface* chiplets[num_chiplets];
|
ChipletInterface* chiplets[num_chiplets];
|
||||||
O_E_converter* oec[num_chiplets][total_pes];
|
O_E_converter* oec[num_chiplets][num_pes];
|
||||||
ProcessingElement* pe[num_chiplets][total_pes];
|
ProcessingElement* pe[num_chiplets][num_pes];
|
||||||
TokenManager* tokens[num_chiplets];
|
TokenManager* tokens[num_chiplets];
|
||||||
|
|
||||||
for (int i = 0; i < num_chiplets; ++i) {
|
for (int i = 0; i < num_chiplets; ++i) {
|
||||||
|
|
Loading…
Reference in a new issue