Merge "Disabled avx avx2 avx512 compiler flags by default. Library components can enable the flags based on performance impact"

am: dd5cf7574b

Change-Id: I123a807852e84a6fe9a25360d10bab4c0de37a28
This commit is contained in:
jaishank 2019-06-28 14:22:05 -07:00 committed by android-build-merger
commit 1b4699a2cf
2 changed files with 18 additions and 5 deletions

View file

@ -67,10 +67,16 @@ var (
"sse4": []string{"-msse4"},
"sse4_1": []string{"-msse4.1"},
"sse4_2": []string{"-msse4.2"},
// Not all cases there is performance gain by enabling -mavx -mavx2
// flags so these flags are not enabled by default.
// if there is performance gain in individual library components,
// the compiler flags can be set in corresponding bp files.
// "avx": []string{"-mavx"},
// "avx2": []string{"-mavx2"},
// "avx512": []string{"-mavx512"}
"popcnt": []string{"-mpopcnt"},
"avx": []string{"-mavx"},
"avx2": []string{"-mavx2"},
"avx512": []string{"-mavx512"},
"aes_ni": []string{"-maes"},
}
)

View file

@ -86,8 +86,15 @@ var (
"sse4": []string{"-msse4"},
"sse4_1": []string{"-msse4.1"},
"sse4_2": []string{"-msse4.2"},
"avx": []string{"-mavx"},
"avx2": []string{"-mavx2"},
// Not all cases there is performance gain by enabling -mavx -mavx2
// flags so these flags are not enabled by default.
// if there is performance gain in individual library components,
// the compiler flags can be set in corresponding bp files.
// "avx": []string{"-mavx"},
// "avx2": []string{"-mavx2"},
// "avx512": []string{"-mavx512"}
"aes_ni": []string{"-maes"},
}
)