Resolve "Separate the hand-written vectorization and the auto-vectorization flags"
Merged
requested to merge 465-separate-the-hand-written-vectorization-and-the-auto-vectorization-flags into master
1 unresolved thread
Closes #465 (closed)
Edited by Matthieu Schaller
Merge request reports
Activity
added 1 commit
- 81ec76b6 - Added --disable-hand-vec option to disable hand written vectorisation.
assigned to @matthieu
359 368 else 360 369 AC_MSG_WARN([Do not know how to disable vectorization for this compiler]) 361 370 fi 362 else 371 elif test "$enable_hand_vec" = "yes"; then 363 372 AC_DEFINE([WITH_VECTORIZATION],1,[Enable vectorization]) changed this line in version 2 of the diff
Something like:
if optimization: Add general optimization flags if vec: Add simd flags if hand-vec: Add the define endif endif endif
Edited by Matthieu Schallerassigned to @pdraper
mentioned in commit d9fd1872
Please register or sign in to reply