Forráskód Böngészése

port r11516 from 1.1: considerably reduce the amount of requests submitted at the same time. Pushing more does not seem to really improve performance, and on the contrary increases the latency of possibly urging requests

Samuel Thibault 11 éve
szülő
commit
0423864961
1 módosított fájl, 2 hozzáadás és 2 törlés
  1. 2 2
      src/datawizard/data_request.c

+ 2 - 2
src/datawizard/data_request.c

@@ -24,8 +24,8 @@
  * Data interfaces should also have to declare how many asynchronous requests
  * Data interfaces should also have to declare how many asynchronous requests
  * they have actually started (think of e.g. csr).
  * they have actually started (think of e.g. csr).
  */
  */
-#define MAX_PENDING_REQUESTS_PER_NODE 400
-#define MAX_PENDING_PREFETCH_REQUESTS_PER_NODE 200
+#define MAX_PENDING_REQUESTS_PER_NODE 20
+#define MAX_PENDING_PREFETCH_REQUESTS_PER_NODE 10
 
 
 /* requests that have not been treated at all */
 /* requests that have not been treated at all */
 static struct _starpu_data_request_list *data_requests[STARPU_MAXNODES];
 static struct _starpu_data_request_list *data_requests[STARPU_MAXNODES];