From 4d2d896e28446928d820bf1353abcf40e3f66ed8 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Sun, 1 Mar 2015 13:02:50 +0100 Subject: Switch to OpenMP Replaces quality (target density) parameter with time limit. In preparation for rendering resumption. --- vector.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'vector.h') diff --git a/vector.h b/vector.h index 6e65186..2c4ff52 100644 --- a/vector.h +++ b/vector.h @@ -5,10 +5,12 @@ /* LLVM/clang */ typedef double double2 __attribute__ ((ext_vector_type (2))); typedef double double4 __attribute__ ((ext_vector_type (4))); +typedef unsigned int uint2 __attribute__ ((ext_vector_type (2))); #endif #else /* GCC */ typedef double double2 __attribute__ ((vector_size (sizeof (double)*2))); typedef double double4 __attribute__ ((vector_size (sizeof (double)*4))); +typedef unsigned int uint2 __attribute__ ((vector_size (sizeof (unsigned int)*2))); #endif -- cgit v1.2.3