1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-09 00:00:03 +01:00

increase MAXVALUE to increase the computation time

This commit is contained in:
Stefan Lankes 2015-07-24 06:24:59 +02:00
parent 345db8913a
commit 8363fa22ea

View file

@ -34,7 +34,7 @@
#include <errno.h>
#define MATRIX_SIZE 128
#define MAXVALUE 17
#define MAXVALUE 1337
#define PAGE_SIZE 4096
#define CACHE_SIZE (256*1024)
#define ALIGN(x,a) (((x)+(a)-1)&~((a)-1))