Browse Source

Show the latencies/bandwidth paths

Samuel Thibault 12 years ago
parent
commit
5803c473f9
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/core/perfmodel/perfmodel_bus.c

+ 4 - 0
src/core/perfmodel/perfmodel_bus.c

@@ -956,6 +956,8 @@ static int load_bus_latency_file_content(void)
 	char path[256];
 	get_latency_path(path, 256);
 
+	_STARPU_DEBUG("loading latencies from %s\n", path);
+
 	f = fopen(path, "r");
 	STARPU_ASSERT(f);
 
@@ -1112,6 +1114,8 @@ static int load_bus_bandwidth_file_content(void)
 	char path[256];
 	get_bandwidth_path(path, 256);
 
+	_STARPU_DEBUG("loading bandwidth from %s\n", path);
+
 	f = fopen(path, "r");
 	if (!f)
 	{