summaryrefslogtreecommitdiff
path: root/src/gpgpu-sim/icnt_wrapper.cc
diff options
context:
space:
mode:
authorMahmoud <[email protected]>2019-05-07 16:28:16 -0400
committerMahmoud <[email protected]>2019-05-07 16:28:16 -0400
commitcf47bd8a20dfb75e8ba5d4aa8e41f570da0cb7f4 (patch)
tree51cc9048b0c1f05c0f8dfcd9efee75a14355ee21 /src/gpgpu-sim/icnt_wrapper.cc
parentad37c917f8641930f9f58c3f04fa6e22600015cd (diff)
enable FEM and fixed indentation
Diffstat (limited to 'src/gpgpu-sim/icnt_wrapper.cc')
-rw-r--r--src/gpgpu-sim/icnt_wrapper.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/gpgpu-sim/icnt_wrapper.cc b/src/gpgpu-sim/icnt_wrapper.cc
index 075e371..3dc1786 100644
--- a/src/gpgpu-sim/icnt_wrapper.cc
+++ b/src/gpgpu-sim/icnt_wrapper.cc
@@ -116,12 +116,12 @@ static unsigned intersim2_get_flit_size()
static void LocalInterconnect_create(unsigned int n_shader, unsigned int n_mem)
{
- g_localicnt_interface->CreateInterconnect(n_shader, n_mem);
+ g_localicnt_interface->CreateInterconnect(n_shader, n_mem);
}
static void LocalInterconnect_init()
{
- g_localicnt_interface->Init();
+ g_localicnt_interface->Init();
}
static bool LocalInterconnect_has_buffer(unsigned input, unsigned int size)
@@ -131,7 +131,7 @@ static bool LocalInterconnect_has_buffer(unsigned input, unsigned int size)
static void LocalInterconnect_push(unsigned input, unsigned output, void* data, unsigned int size)
{
- g_localicnt_interface->Push(input, output, data, size);
+ g_localicnt_interface->Push(input, output, data, size);
}
static void* LocalInterconnect_pop(unsigned output)
@@ -141,7 +141,7 @@ static void* LocalInterconnect_pop(unsigned output)
static void LocalInterconnect_transfer()
{
- g_localicnt_interface->Advance();
+ g_localicnt_interface->Advance();
}
static bool LocalInterconnect_busy()
@@ -151,17 +151,17 @@ static bool LocalInterconnect_busy()
static void LocalInterconnect_display_stats()
{
- g_localicnt_interface->DisplayStats();
+ g_localicnt_interface->DisplayStats();
}
static void LocalInterconnect_display_overall_stats()
{
- g_localicnt_interface->DisplayOverallStats();
+ g_localicnt_interface->DisplayOverallStats();
}
static void LocalInterconnect_display_state(FILE *fp)
{
- g_localicnt_interface->DisplayState(fp);
+ g_localicnt_interface->DisplayState(fp);
}
static unsigned LocalInterconnect_get_flit_size()