Samuel Thibault 6 yıl önce
ebeveyn
işleme
bc27f4674d
1 değiştirilmiş dosya ile 5 ekleme ve 5 silme
  1. 5 5
      tests/helper/cusparse_init.c

+ 5 - 5
tests/helper/cusparse_init.c

@@ -1,7 +1,7 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
  * Copyright (C) 2010-2013,2015,2017                      CNRS
- * Copyright (C) 2009-2011,2013,2014,2016,2017            Université de Bordeaux
+ * Copyright (C) 2009-2011,2013,2014,2016,2017,2019       Université de Bordeaux
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by
@@ -55,15 +55,15 @@ int main(int argc, char **argv)
 	shutdown_timing = end - start;
 
 	FPRINTF(stderr, "Total:\n");
-	FPRINTF(stderr, "\tinit: %2.2f us\n", init_timing/(1000));
-	FPRINTF(stderr, "\tshutdown: %2.2f us\n", shutdown_timing/(1000));
+	FPRINTF(stderr, "\tinit: %2.2f ms\n", init_timing/(1000));
+	FPRINTF(stderr, "\tshutdown: %2.2f ms\n", shutdown_timing/(1000));
 
 	if (ngpus != 0)
 	{
 		FPRINTF(stderr, "per-GPU (#gpu = %u):\n", ngpus);
 
-		FPRINTF(stderr, "\tinit: %2.2f us\n", init_timing/(1000*ngpus));
-		FPRINTF(stderr, "\tshutdown: %2.2f us\n", shutdown_timing/(1000*ngpus));
+		FPRINTF(stderr, "\tinit: %2.2f ms\n", init_timing/(1000*ngpus));
+		FPRINTF(stderr, "\tshutdown: %2.2f ms\n", shutdown_timing/(1000*ngpus));
 	}
 
 	starpu_shutdown();