summaryrefslogtreecommitdiff
path: root/src/gpgpu-sim/icnt_wrapper.cc
diff options
context:
space:
mode:
authorMahmoud <[email protected]>2019-10-16 15:33:11 -0400
committerMahmoud <[email protected]>2019-10-16 15:33:11 -0400
commitbce4e08d51e3f5817f174f639c56f34104b6efe1 (patch)
tree74eeedd574b8bae822f653c125e14630f206ddab /src/gpgpu-sim/icnt_wrapper.cc
parent998bbc82176e1579c8500aa0c01bb00395da74dc (diff)
adding new stats, verbose, granting arbit in the local xbar
Diffstat (limited to 'src/gpgpu-sim/icnt_wrapper.cc')
-rw-r--r--src/gpgpu-sim/icnt_wrapper.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gpgpu-sim/icnt_wrapper.cc b/src/gpgpu-sim/icnt_wrapper.cc
index 67724d0..e449bf1 100644
--- a/src/gpgpu-sim/icnt_wrapper.cc
+++ b/src/gpgpu-sim/icnt_wrapper.cc
@@ -183,6 +183,9 @@ void icnt_reg_options( class OptionParser * opp )
option_parser_register(opp, "-inct_out_buffer_limit", OPT_UINT32, &g_inct_config.out_buffer_limit, "out_buffer_limit", "64");
option_parser_register(opp, "-inct_subnets", OPT_UINT32, &g_inct_config.subnets, "subnets", "2");
option_parser_register(opp, "-arbiter_algo", OPT_UINT32, &g_inct_config.arbiter_algo, "arbiter_algo", "1");
+ option_parser_register(opp, "-inct_verbose", OPT_UINT32, &g_inct_config.verbose, "inct_verbose", "0");
+ option_parser_register(opp, "-inct_grant_cycles", OPT_UINT32, &g_inct_config.grant_cycles, "grant_cycles", "1");
+
}