I am using LINUX with following specifications, g++ (Ubuntu/Linaro 4.6.1-9ubuntu3) 4.6.1
After spending sometime, I am able to compile Splash2 Benchmark kernel applications with small modification in makefile of each application.
After spending sometime, I am able to compile Splash2 Benchmark kernel applications with small modification in makefile of each application.
To download Splash2 benchmark, click -- > SESC: Splash2 Benchmark Kernels & Applications Package
CFLAGS = -O2 -Olimit 2000 -w
LDFLAGS = -lmpc -lm
Replace the above two lines with
CFLAGS = -O2 -w
LDFLAGS = -lm
Then, run make to get the executable files e.g. CHOLESKY, FFT, LU, and RADIX.
To check associated parameters with each application, run the following command.
> ./CHOLESKY -h
> ./FFT -h
> ./LU -h
> ./RADIX -h
Rest of the work is all yours :)
Other Links:
No comments:
Post a Comment