소스 검색

Make mpi cholesky use a default 240x240 tile size instead of 256

Samuel Thibault 9 년 전
부모
커밋
c2e4fbc174
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      mpi/examples/matrix_decomposition/mpi_decomposition_params.c

+ 2 - 2
mpi/examples/matrix_decomposition/mpi_decomposition_params.c

@@ -1,6 +1,6 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2009, 2010  Université de Bordeaux
+ * Copyright (C) 2009, 2010, 2015  Université de Bordeaux
  * Copyright (C) 2010, 2011, 2012, 2013, 2015  CNRS
  *
  * StarPU is free software; you can redistribute it and/or modify
@@ -26,7 +26,7 @@ unsigned size = 4*64;
 unsigned nblocks = 2;
 unsigned nbigblocks = 2;
 #else
-unsigned size = 4*1024;
+unsigned size = 4*960;
 unsigned nblocks = 16;
 unsigned nbigblocks = 2;
 #endif