Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ set(fbgemm_targets)
# FBGEMM AVX2 Target
################################################################################

if(CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64|AMD64|i386|i686")
if(CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64|amd64|AMD64|i386|i686")

message(STATUS "Processor is ${CMAKE_SYSTEM_PROCESSOR}; will build AVX2 target")

Expand Down Expand Up @@ -253,7 +253,7 @@ endif()
# FBGEMM AVX512 Target
################################################################################

if(CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64|AMD64|i386|i686" AND CXX_AVX512_FOUND)
if(CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64|amd64|AMD64|i386|i686" AND CXX_AVX512_FOUND)
message(STATUS "Processor is ${CMAKE_SYSTEM_PROCESSOR}; will build AVX512 target")

get_filelist("get_fbgemm_avx512_srcs()" FBGEMM_AVX512_SRCS)
Expand Down
3 changes: 1 addition & 2 deletions bench/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,7 @@ function(add_benchmark BENCHNAME)
endif()

if(${BLAS_FOUND})
target_link_libraries(${BENCHNAME}
${BLAS_LIBRARIES})
target_link_libraries(${BENCHNAME} BLAS::BLAS)

target_compile_definitions(${BENCHNAME} PRIVATE
-DUSE_BLAS)
Expand Down
2 changes: 1 addition & 1 deletion external/cpuinfo
Submodule cpuinfo updated 49 files
+11 −11 .github/workflows/build.yml
+17 −0 BUILD.bazel
+22 −6 CMakeLists.txt
+3 −1 README.md
+8 −8 bench/get-current.cc
+2 −2 bench/init.cc
+3 −3 cmake/DownloadGoogleBenchmark.cmake
+3 −3 cmake/DownloadGoogleTest.cmake
+1 −1 include/cpuinfo-mock.h
+241 −1 include/cpuinfo.h
+1 −1 libcpuinfo.pc.in
+2 −0 scripts/android-arm64-mock.sh
+2 −0 scripts/android-armv7-mock.sh
+59 −0 scripts/android-riscv64-build.sh
+18 −11 src/arm/api.h
+2 −1 src/arm/cache.c
+3 −1 src/arm/linux/aarch32-isa.c
+58 −1 src/arm/linux/aarch64-isa.c
+13 −6 src/arm/linux/api.h
+169 −9 src/arm/linux/chipset.c
+8 −8 src/arm/linux/hwcap.c
+39 −3 src/arm/linux/init.c
+91 −5 src/arm/mach/init.c
+6 −0 src/arm/midr.h
+17 −2 src/arm/uarch.c
+2 −6 src/arm/windows/init-by-logical-sys-info.c
+148 −102 src/arm/windows/init.c
+60 −17 src/arm/windows/windows-arm-init.h
+1 −0 src/cpuinfo/internal-api.h
+12 −0 src/freebsd/api.h
+100 −0 src/freebsd/topology.c
+2 −0 src/init.c
+1 −1 src/riscv/linux/riscv-hw.c
+1 −0 src/x86/api.h
+1 −1 src/x86/cache/init.c
+398 −0 src/x86/freebsd/init.c
+1 −1 src/x86/init.c
+56 −0 src/x86/isa.c
+3 −7 src/x86/linux/cpuinfo.c
+16 −0 src/x86/uarch.c
+31 −0 test/build.prop/astro_55r.log
+43 −0 test/cpuinfo/astro-55r.log
+851 −0 test/mock/pixel-8.cc
+1,294 −0 test/mock/pixel-8.h
+6 −0 test/name/proc-cpuinfo-hardware.cc
+4 −0 test/name/ro-product-board.cc
+71 −0 tools/cpu-info.c
+9 −0 tools/cpuid-dump.c
+20 −0 tools/isa-info.c