From 6410aa896f974002f8539ee3ca2f70bf66c0a0af Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 12 May 2015 21:07:09 -0400 Subject: Added optimized AVX function for sample processing Added AVX versions of existing 5 SSE functions. Added 6th AVX function to copy vectors which is 1.5 times faster then memcpy. Data consistency and validness is fully tested after processing with new AVX functions on aligned and non aligned buffers. --- wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'wscript') diff --git a/wscript b/wscript index 84a8fb3e6c..e9c1da8f06 100644 --- a/wscript +++ b/wscript @@ -417,12 +417,12 @@ int main() { return 0; }''', if (re.search ("(x86_64|AMD64)", cpu) != None): # on Windows sse is supported by 64 bit platforms only build_host_supports_sse = True - + # mingw GCC compiler to uses at&t (Unix specific) assembler dialect by default # compiler_flags.append (["--mmnemonic=att", "msyntax=att") compiler_flags.extend ([ flags_dict['sse'], flags_dict['fpmath-sse'], flags_dict['xmmintrinsics'], flags_dict['attasm'] ]) - + # end of processor-specific section # optimization section -- cgit v1.2.3