Changes to function calling in each module

This commit is contained in:
HelenClaraGeorge 2025-01-03 14:19:41 +01:00
parent 9c6446d06c
commit 05d5a79807

View file

@ -21,8 +21,8 @@ int sc_main(int argc, char* argv[]) {
// Create an array of Interposer Interface instances
InterposerInterface* interposers[num_chiplets];
ChipletInterface* chiplets[num_chiplets];
O_E_converter* oec[num_chiplets][total_pes];
ProcessingElement* pe[num_chiplets][total_pes];
O_E_converter* oec[num_chiplets][num_pes];
ProcessingElement* pe[num_chiplets][num_pes];
TokenManager* tokens[num_chiplets];
for (int i = 0; i < num_chiplets; ++i) {