From f4e59032c42c1df52717d2663760072cd0510f30 Mon Sep 17 00:00:00 2001 From: eschnett Date: Wed, 16 Jan 2013 20:17:39 +0000 Subject: Major update Disable AVX emulation Set default for streaming stores to "no" Correct QPX vectorisation (IBM Blue Gene/Q) Add MIC vectorisation (Intel Xeon Phi) Convert SSE and AVX vectorisation to using inline functions instead of macros for code clarity Define CCTK_BOOLEAN, CCTK_INTEGER and CCTK_BOOLEAN_VEC, CCTK_INTEGER_VEC to make boolean and integer vectors explicit git-svn-id: https://svn.cct.lsu.edu/repos/numrel/LSUThorns/Vectors/trunk@77 105869f7-3296-0410-a4ea-f4349344b45a --- configure.sh | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) (limited to 'configure.sh') diff --git a/configure.sh b/configure.sh index 1555570..96f34cd 100644 --- a/configure.sh +++ b/configure.sh @@ -71,7 +71,7 @@ esac case $(echo "x$VECTORISE_STREAMING_STORES" | tr '[:upper:]' '[:lower:]') in (xyes) VECTORISE_STREAMING_STORES=1 ;; (xno) VECTORISE_STREAMING_STORES=0 ;; - (x) VECTORISE_STREAMING_STORES=1 ;; # default + (x) VECTORISE_STREAMING_STORES=0 ;; # default (*) echo "BEGIN ERROR" echo "Illegal value of option VECTORISE_STREAMING_STORES" echo "END ERROR" @@ -88,16 +88,6 @@ case $(echo "x$VECTORISE_INLINE" | tr '[:upper:]' '[:lower:]') in exit 1 esac -case $(echo "x$VECTORISE_EMULATE_AVX" | tr '[:upper:]' '[:lower:]') in - (xyes) VECTORISE_EMULATE_AVX=1 ;; - (xno) VECTORISE_EMULATE_AVX=0 ;; - (x) VECTORISE_EMULATE_AVX=0 ;; # default - (*) echo "BEGIN ERROR" - echo "Illegal value of option VECTORISE_EMULATE_AVX" - echo "END ERROR" - exit 1 -esac - ################################################################################ @@ -112,7 +102,6 @@ echo "VECTORISE_ALWAYS_USE_UNALIGNED_LOADS $VECTORISE_ALWAYS_USE_UNALIGNED_LOADS echo "VECTORISE_ALWAYS_USE_ALIGNED_LOADS $VECTORISE_ALWAYS_USE_ALIGNED_LOADS" echo "VECTORISE_INLINE $VECTORISE_INLINE" echo "VECTORISE_STREAMING_STORES $VECTORISE_STREAMING_STORES" -echo "VECTORISE_EMULATE_AVX $VECTORISE_EMULATE_AVX" echo "END DEFINE" echo "BEGIN MAKE_DEFINITION" @@ -122,5 +111,4 @@ echo "VECTORISE_ALWAYS_USE_UNALIGNED_LOADS = $VECTORISE_ALWAYS_USE_UNALIGNED_LOA echo "VECTORISE_ALWAYS_USE_ALIGNED_LOADS = $VECTORISE_ALWAYS_USE_ALIGNED_LOADS" echo "VECTORISE_INLINE = $VECTORISE_INLINE" echo "VECTORISE_STREAMING_STORES = $VECTORISE_STREAMING_STORES" -echo "VECTORISE_EMULATE_AVX = $VECTORISE_EMULATE_AVX" echo "END MAKE_DEFINITION" -- cgit v1.2.3