Browse Source

src/core/perfmodel/perfmodel_history.c: modify function starpu_perfmodel_get_arch_name

Nathalie Furmento 11 years ago
parent
commit
e93e3534ec
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/core/perfmodel/perfmodel_history.c

+ 1 - 1
src/core/perfmodel/perfmodel_history.c

@@ -1041,7 +1041,7 @@ void starpu_perfmodel_get_arch_name(struct starpu_perfmodel_arch* arch, char *ar
 	int comb = starpu_get_arch_comb(arch->ndevices, arch->devices);
 	STARPU_ASSERT(comb != -1);
 
-	snprintf(archname, maxlen, "%d_impl%u", comb, impl);
+	snprintf(archname, maxlen, "Comb%d_impl%u", comb, impl);
 }
 
 void starpu_perfmodel_debugfilepath(struct starpu_perfmodel *model,