Sfoglia il codice sorgente

port r17380-17381 from 1.2: do not skip computations, to fix partitioning tests results

Samuel Thibault 9 anni fa
parent
commit
bf99a4d49c
1 ha cambiato i file con 1 aggiunte e 5 eliminazioni
  1. 1 5
      tests/datawizard/scal.c

+ 1 - 5
tests/datawizard/scal.c

@@ -1,6 +1,6 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2011, 2014  Université de Bordeaux
+ * Copyright (C) 2011, 2014, 2016  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
@@ -21,8 +21,6 @@
 
 void scal_func_cpu(void *buffers[], void *cl_arg)
 {
-	STARPU_SKIP_IF_VALGRIND;
-
 	unsigned i;
 
 	struct starpu_vector_interface *vector = (struct starpu_vector_interface *) buffers[0];
@@ -39,8 +37,6 @@ struct starpu_opencl_program opencl_program;
 
 void scal_func_opencl(void *buffers[], void *_args)
 {
-	STARPU_SKIP_IF_VALGRIND;
-
 	int id, devid;
         cl_int err;
 	cl_kernel kernel;