From d7810da8259773aa1c217b43629c9ee7ba974a42 Mon Sep 17 00:00:00 2001 From: Benjamin Segovia Date: Tue, 9 Oct 2012 21:29:39 +0000 Subject: [PATCH] Reset mandelbrot dimensions --- utests/compiler_mandelbrot.cpp | 4 ++-- utests/compiler_mandelbrot_alternate.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/utests/compiler_mandelbrot.cpp b/utests/compiler_mandelbrot.cpp index 6175150..aa70f3d 100644 --- a/utests/compiler_mandelbrot.cpp +++ b/utests/compiler_mandelbrot.cpp @@ -20,8 +20,8 @@ #include "utest_helper.hpp" static int *dst = NULL; -static const size_t w = 16; -static const size_t h = 16; +static const size_t w = 64; +static const size_t h = 64; static const size_t iter = 4; static void compiler_mandelbrot(void) diff --git a/utests/compiler_mandelbrot_alternate.cpp b/utests/compiler_mandelbrot_alternate.cpp index f1c2960..74fc716 100644 --- a/utests/compiler_mandelbrot_alternate.cpp +++ b/utests/compiler_mandelbrot_alternate.cpp @@ -20,8 +20,8 @@ #include "utest_helper.hpp" static int *dst = NULL; -static const size_t w = 16; -static const size_t h = 16; +static const size_t w = 64; +static const size_t h = 64; static const size_t iter = 4; static const float criterium = 4.f; -- 2.7.4