Browse Source

remove no longer valid reference to gordon

Nathalie Furmento 13 years ago
parent
commit
b4235cc2d8
3 changed files with 4 additions and 9 deletions
  1. 0 3
      gcc-plugin/src/starpu.c
  2. 1 3
      include/starpu_config.h.in
  3. 3 3
      tools/starpu_perfmodel_display.c

+ 0 - 3
gcc-plugin/src/starpu.c

@@ -103,9 +103,6 @@ static int supported_targets = 0
 #ifdef STARPU_USE_OPENCL
     | STARPU_OPENCL
 #endif
-#ifdef STARPU_USE_GORDON
-    | STARPU_GORDON
-#endif
     ;
 
 

+ 1 - 3
include/starpu_config.h.in

@@ -1,7 +1,7 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
  * Copyright (C) 2009-2012  Université de Bordeaux 1
- * Copyright (C) 2010, 2011, 2012  Centre National de la Recherche Scientifique
+ * Copyright (C) 2010, 2011, 2012, 2013  Centre National de la Recherche Scientifique
  *
  * 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
@@ -24,7 +24,6 @@
 #undef STARPU_USE_CPU
 #undef STARPU_USE_CUDA
 #undef STARPU_USE_OPENCL
-#undef STARPU_USE_GORDON
 
 #undef STARPU_SIMGRID
 
@@ -70,7 +69,6 @@
 #undef STARPU_MAXCPUS
 #undef STARPU_MAXCUDADEVS
 #undef STARPU_MAXOPENCLDEVS
-#undef STARPU_MAXGORDONDEVS
 #undef STARPU_NMAXWORKERS
 #undef STARPU_NMAX_SCHED_CTXS
 #undef STARPU_MAXIMPLEMENTATIONS

+ 3 - 3
tools/starpu_perfmodel_display.c

@@ -1,7 +1,7 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
  * Copyright (C) 2011  Université de Bordeaux 1
- * Copyright (C) 2011, 2012  Centre National de la Recherche Scientifique
+ * Copyright (C) 2011, 2012, 2013  Centre National de la Recherche Scientifique
  * Copyright (C) 2011  Télécom-SudParis
  *
  * StarPU is free software; you can redistribute it and/or modify
@@ -52,7 +52,7 @@ static void usage(char **argv)
         fprintf(stderr, "   -l                  display all available models\n");
         fprintf(stderr, "   -s <symbol>         specify the symbol\n");
         fprintf(stderr, "   -p <parameter>      specify the parameter (e.g. a, b, c, mean, stddev)\n");
-        fprintf(stderr, "   -a <arch>           specify the architecture (e.g. cpu, cpu:k, cuda, gordon)\n");
+        fprintf(stderr, "   -a <arch>           specify the architecture (e.g. cpu, cpu:k, cuda)\n");
 	fprintf(stderr, "   -f <footprint>      display the history-based model for the specified footprint\n");
 	fprintf(stderr, "   -h, --help          display this help and exit\n");
 	fprintf(stderr, "   -v, --version       output version information and exit\n\n");
@@ -98,7 +98,7 @@ static void parse_args(int argc, char **argv)
 			break;
 
 		case 'a':
-			/* architecture (cpu, cuda, gordon) */
+			/* architecture (cpu, cuda) */
 			parch = optarg;
 			break;