Browse Source

reduce default cholesky size so it can fit on 1GB laptops

Samuel Thibault 14 years ago
parent
commit
7dec4b91b6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/cholesky/dw_cholesky.h

+ 1 - 1
examples/cholesky/dw_cholesky.h

@@ -66,7 +66,7 @@ typedef struct {
 	sem_t *sem;
 	sem_t *sem;
 } cl_args;
 } cl_args;
 
 
-static unsigned size = 16*1024;
+static unsigned size = 4*1024;
 static unsigned nblocks = 16;
 static unsigned nblocks = 16;
 static unsigned nbigblocks = 8;
 static unsigned nbigblocks = 8;
 static unsigned pinned = 0;
 static unsigned pinned = 0;