|
@@ -1,7 +1,7 @@
|
|
|
/* StarPU --- Runtime system for heterogeneous multicore architectures.
|
|
|
*
|
|
|
* Copyright (C) 2009-2010, 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
|
|
@@ -34,10 +34,6 @@
|
|
|
|
|
|
#include <starpu.h>
|
|
|
|
|
|
-#ifdef STARPU_USE_GORDON
|
|
|
-#include <gordon/null.h>
|
|
|
-#endif
|
|
|
-
|
|
|
#define FPRINTF(ofile, fmt, args ...) do { if (!getenv("STARPU_SSILENT")) {fprintf(ofile, fmt, ##args); }} while(0)
|
|
|
#define TAG(i, j, iter) ((starpu_tag_t) ( ((uint64_t)(iter)<<48) | ((uint64_t)(j)<<24) | (i)) )
|
|
|
|
|
@@ -219,11 +215,6 @@ int main(int argc __attribute__((unused)) , char **argv __attribute__((unused)))
|
|
|
exit(77);
|
|
|
STARPU_CHECK_RETURN_VALUE(ret, "starpu_init");
|
|
|
|
|
|
-#ifdef STARPU_USE_GORDON
|
|
|
- /* load an empty kernel and get its identifier */
|
|
|
- unsigned gordon_null_kernel = load_gordon_null_kernel();
|
|
|
-#endif
|
|
|
-
|
|
|
parse_args(argc, argv);
|
|
|
|
|
|
FPRINTF(stderr, "ITER: %u\n", nk);
|
|
@@ -231,9 +222,6 @@ int main(int argc __attribute__((unused)) , char **argv __attribute__((unused)))
|
|
|
cl.cpu_funcs[0] = cpu_codelet;
|
|
|
cl.cuda_funcs[0] = cpu_codelet;
|
|
|
cl.opencl_funcs[0] = cpu_codelet;
|
|
|
-#ifdef STARPU_USE_GORDON
|
|
|
- cl.gordon_func = gordon_null_kernel;
|
|
|
-#endif
|
|
|
cl.nbuffers = 0;
|
|
|
|
|
|
ret = create_task_grid(0);
|