From 5012ba34b4b5952866ca7d4fe512c7cbd77be3e4 Mon Sep 17 00:00:00 2001 From: Ilia Filippov Date: Thu, 5 Dec 2013 19:38:46 +0400 Subject: [PATCH] increase data for examples --- examples/mandelbrot_tasks/mandelbrot_tasks.cpp | 4 ++-- examples/noise/noise.cpp | 4 ++-- examples/stencil/stencil.cpp | 2 +- perf.ini | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/examples/mandelbrot_tasks/mandelbrot_tasks.cpp b/examples/mandelbrot_tasks/mandelbrot_tasks.cpp index 698daf0f..1c4d2ca5 100644 --- a/examples/mandelbrot_tasks/mandelbrot_tasks.cpp +++ b/examples/mandelbrot_tasks/mandelbrot_tasks.cpp @@ -74,8 +74,8 @@ static void usage() { } int main(int argc, char *argv[]) { - unsigned int width = 1536; - unsigned int height = 1024; + unsigned int width = 1536 * 8; + unsigned int height = 1024 * 8; float x0 = -2; float x1 = 1; float y0 = -1; diff --git a/examples/noise/noise.cpp b/examples/noise/noise.cpp index 123f98c7..86b4f761 100644 --- a/examples/noise/noise.cpp +++ b/examples/noise/noise.cpp @@ -66,8 +66,8 @@ writePPM(float *buf, int width, int height, const char *fn) { int main() { - unsigned int width = 768; - unsigned int height = 768; + unsigned int width = 768 * 4; + unsigned int height = 768 * 4; float x0 = -10; float x1 = 10; float y0 = -10; diff --git a/examples/stencil/stencil.cpp b/examples/stencil/stencil.cpp index 593d901f..9cd12674 100644 --- a/examples/stencil/stencil.cpp +++ b/examples/stencil/stencil.cpp @@ -67,7 +67,7 @@ void InitData(int Nx, int Ny, int Nz, float *A[2], float *vsq) { int main() { - int Nx = 256, Ny = 256, Nz = 256; + int Nx = 256 * 2, Ny = 256 * 2, Nz = 256 * 2; int width = 4; float *Aserial[2], *Aispc[2]; Aserial[0] = new float [Nx * Ny * Nz]; diff --git a/perf.ini b/perf.ini index 249c25f4..b44a2853 100755 --- a/perf.ini +++ b/perf.ini @@ -10,7 +10,7 @@ %**************************************************************************************************** AOBench aobench -10 512 512 +3 2048 2048 #*** Deferred Shading deferred @@ -41,7 +41,7 @@ options #*** Ray Tracer rt -sponza +sponza --scale=6.0 #*** 3D Stencil stencil