From 27610008cbe12a935283164d55a415973b4340b8 Mon Sep 17 00:00:00 2001 From: jsteube Date: Sat, 9 Mar 2019 08:11:29 +0100 Subject: [PATCH] Testwise disable aligned constants --- OpenCL/inc_types.cl | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/OpenCL/inc_types.cl b/OpenCL/inc_types.cl index 99e1c8321..08b2b8740 100644 --- a/OpenCL/inc_types.cl +++ b/OpenCL/inc_types.cl @@ -8,10 +8,16 @@ typedef ushort u16; typedef uint u32; typedef ulong u64; -typedef u8 u8a __attribute__ ((aligned (8))); -typedef u16 u16a __attribute__ ((aligned (8))); -typedef u32 u32a __attribute__ ((aligned (8))); -typedef u64 u64a __attribute__ ((aligned (8))); +//testwise disabled +//typedef u8 u8a __attribute__ ((aligned (8))); +//typedef u16 u16a __attribute__ ((aligned (8))); +//typedef u32 u32a __attribute__ ((aligned (8))); +//typedef u64 u64a __attribute__ ((aligned (8))); + +typedef u8 u8a; +typedef u16 u16a; +typedef u32 u32a; +typedef u64 u64a; #ifndef NEW_SIMD_CODE #undef VECT_SIZE