Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
# limitations under the License.

# Determine the hardware features available in this CPU.
HAVE_SSE := $(shell grep -q sse /proc/cpuinfo && echo "true")
HAVE_AVX2 := $(shell grep -q avx2 /proc/cpuinfo && echo "true")
HAVE_AVX512 := $(shell grep -q avx512f /proc/cpuinfo && echo "true")
HAVE_SSE := $(shell grep -qs sse /proc/cpuinfo && echo "true")
HAVE_AVX2 := $(shell grep -qs avx2 /proc/cpuinfo && echo "true")
HAVE_AVX512 := $(shell grep -qs avx512f /proc/cpuinfo && echo "true")

# Default targets. Always built.
BASIC_FILES := $(shell ls *.cc | egrep -v '_avx|_sse')
Expand Down
Loading