Commit dba80816 authored by David Reid's avatar David Reid

Update test build script to use AVX2 instead of AVX.

parent 6b988bbc
@echo off @echo off
SET c_compiler=gcc SET c_compiler=gcc
SET cpp_compiler=g++ SET cpp_compiler=g++
SET options=-Wall -mavx SET options=-Wall -mavx2
@echo on @echo on
%c_compiler% mal_test_0.c -o ./bin/mal_test_0.exe %options% %c_compiler% mal_test_0.c -o ./bin/mal_test_0.exe %options%
%cpp_compiler% mal_test_0.cpp -o ./bin/mal_test_0_cpp.exe %options% %cpp_compiler% mal_test_0.cpp -o ./bin/mal_test_0_cpp.exe %options%
%c_compiler% mal_profiling.c -o ./bin/mal_profiling.exe %options% %c_compiler% mal_profiling.c -o ./bin/mal_profiling.exe %options% -s -O2
%cpp_compiler% mal_profiling.c -o ./bin/mal_profiling_cpp.exe %options% %cpp_compiler% mal_profiling.c -o ./bin/mal_profiling_cpp.exe %options% -s -O2
%c_compiler% mal_dithering.c -o ./bin/mal_dithering.exe %options% %c_compiler% mal_dithering.c -o ./bin/mal_dithering.exe %options%
%cpp_compiler% mal_dithering.c -o ./bin/mal_dithering_cpp.exe %options% %cpp_compiler% mal_dithering.c -o ./bin/mal_dithering_cpp.exe %options%
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment