Procházet zdrojové kódy

Use bigger vector, to have at least something like 1ms computation

Samuel Thibault před 13 roky
rodič
revize
f80bb38305
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      examples/basic_examples/vector_scal.c

+ 1 - 1
examples/basic_examples/vector_scal.c

@@ -27,7 +27,7 @@
 #include <starpu_opencl.h>
 #include <stdio.h>
 
-#define	NX	2048
+#define	NX	2048000
 #define FPRINTF(ofile, fmt, args ...) do { if (!getenv("STARPU_SSILENT")) {fprintf(ofile, fmt, ##args); }} while(0)
 
 extern void scal_cpu_func(void *buffers[], void *_args);