pytorch / FBGEMM

FB (Facebook) + GEMM (General Matrix-Matrix Multiplication) - https://code.fb.com/ml-applications/fbgemm/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build failure on MacOS

xquyvu opened this issue · comments

Hi PyTorch team,

I'm getting this error while trying to follow the instructions here

Everything ran ok up until this point: make -j VERBOSE=1

Here's the last bit of the stack trace:


[ 28%] Linking C executable cpu-info
cd <...>/FBGEMM/build/cpuinfo && /Users/Quy.Vu/.pyenv/versions/3.11/envs/everything/lib/python3.11/site-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/isa-info.dir/link.txt --verbose=1
cd <...>/FBGEMM/build/cpuinfo && /Users/Quy.Vu/.pyenv/versions/3.11/envs/everything/lib/python3.11/site-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cpu-info.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -O3 -DNDEBUG -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names "CMakeFiles/cpu-info.dir/tools/cpu-info.c.o" -o cpu-info  libcpuinfo.a deps/clog/libclog.a 
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -O3 -DNDEBUG -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names "CMakeFiles/cache-info.dir/tools/cache-info.c.o" -o cache-info  libcpuinfo.a deps/clog/libclog.a 
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -O3 -DNDEBUG -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names "CMakeFiles/isa-info.dir/tools/isa-info.c.o" -o isa-info  libcpuinfo.a deps/clog/libclog.a 
<...>/FBGEMM/src/QuantUtils.cc:310:1: error: unused parameter 'noise_ratio' [-Werror,-Wunused-parameter]
FBGEMM_SPECIALIZED_FUSED_QUANTIZE_DEQUANTIZE(int8_t)
^
<...>/FBGEMM/src/QuantUtils.cc:271:13: note: expanded from macro 'FBGEMM_SPECIALIZED_FUSED_QUANTIZE_DEQUANTIZE'
      float noise_ratio) {                                          \
            ^
<...>/FBGEMM/src/QuantUtils.cc:311:1: error: unused parameter 'noise_ratio' [-Werror,-Wunused-parameter]
FBGEMM_SPECIALIZED_FUSED_QUANTIZE_DEQUANTIZE(uint8_t)
^
<...>/FBGEMM/src/QuantUtils.cc:271:13: note: expanded from macro 'FBGEMM_SPECIALIZED_FUSED_QUANTIZE_DEQUANTIZE'
      float noise_ratio) {                                          \
            ^
2 errors generated.
make[2]: *** [CMakeFiles/fbgemm_generic.dir/src/QuantUtils.cc.o] Error 1
make[2]: *** Waiting for unfinished jobs....
[ 28%] Built target cpu-info
[ 28%] Built target cache-info
[ 28%] Built target isa-info
<...>/FBGEMM/src/EmbeddingSpMDM.cc:1021:14: error: unused parameter 'has_weight' [-Werror,-Wunused-parameter]
        bool has_weight,
             ^
<...>/FBGEMM/src/EmbeddingSpMDM.cc:1023:13: error: unused parameter 'prefetch' [-Werror,-Wunused-parameter]
        int prefetch,
            ^
[ 28%] Linking CXX static library ../../lib/libgmock_main.a
cd <...>/FBGEMM/build/googletest/googlemock && /Users/Quy.Vu/.pyenv/versions/3.11/envs/everything/lib/python3.11/site-packages/cmake/data/bin/cmake -P CMakeFiles/gmock_main.dir/cmake_clean_target.cmake
cd <...>/FBGEMM/build/googletest/googlemock && /Users/Quy.Vu/.pyenv/versions/3.11/envs/everything/lib/python3.11/site-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/gmock_main.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ar qc ../../lib/libgmock_main.a CMakeFiles/gmock_main.dir/src/gmock_main.cc.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib ../../lib/libgmock_main.a
[ 28%] Built target gmock_main
2 errors generated.
make[2]: *** [CMakeFiles/fbgemm_generic.dir/src/EmbeddingSpMDM.cc.o] Error 1
make[1]: *** [CMakeFiles/fbgemm_generic.dir/all] Error 2
make: *** [all] Error 2

My system:

  • Apple M1 Pro
  • MacOS Ventura 13.4

Any pointer would be really useful, thank you.

Hi @xquyvu, this will be fixed on our end, but in the meantime, it can be worked around with by updating the compiler flags:

export CFLAGS+=" -Wno-error=unused-parameter"
export CXXFLAGS+=" -Wno-error=unused-parameter"

@xquyvu #2158 has landed, could you try rebuilding from top of main and let us know if you are still running into build issues?

@q10 Thanks for having a look! I'm still getting unused parameter errors. Here's the full trace:

Wall of text
[  1%] Building CXX object CMakeFiles/fbgemm_avx2.dir/src/OptimizedKernelsAvx2.cc.o
[  1%] Building CXX object CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwisePerChannelQuantAvx2.cc.o
[  1%] Building CXX object CMakeFiles/fbgemm_avx2.dir/src/QuantUtilsAvx2.cc.o
_avx2.dir/src/FbgemmI8Depthwise3DAvx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/FbgemmI8Depthwise3DAvx2.cc
[  1%] Building CXX object CMakeFiles/fbgemm_avx2.dir/src/FbgemmFP16UKernelsAvx2.cc.o
[  1%] Building CXX object CMakeFiles/fbgemm_avx2.dir/src/UtilsAvx2.cc.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mfma -mavx512f -mavx512bw -mavx512dq -mavx512vl -fsanitize=address -fno-omit-frame-pointer -masm=intel -MD -MT CMakeFiles/fbgemm_avx512.dir/src/FbgemmFP16UKernelsAvx512_256.cc.o -MF CMakeFiles/fbgemm_avx512.dir/src/FbgemmFP16UKernelsAvx512_256.cc.o.d -o CMakeFiles/fbgemm_avx512.dir/src/FbgemmFP16UKernelsAvx512_256.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/FbgemmFP16UKernelsAvx512_256.cc
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -Wno-uninitialized -MD -MT CMakeFiles/fbgemm_avx2.dir/src/UtilsAvx2.cc.o -MF CMakeFiles/fbgemm_avx2.dir/src/UtilsAvx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/UtilsAvx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/UtilsAvx2.cc
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mfma -mavx512f -mavx512bw -mavx512dq -mavx512vl -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseInt8Avx512.cc.o -MF CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseInt8Avx512.cc.o.d -o CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseInt8Avx512.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/FbgemmSparseDenseInt8Avx512.cc
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -masm=intel -MD -MT CMakeFiles/fbgemm_avx2.dir/src/FbgemmFP16UKernelsAvx2.cc.o -MF CMakeFiles/fbgemm_avx2.dir/src/FbgemmFP16UKernelsAvx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/FbgemmFP16UKernelsAvx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/FbgemmFP16UKernelsAvx2.cc
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mfma -mavx512f -mavx512bw -mavx512dq -mavx512vl -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx512.dir/src/EmbeddingSpMDMAvx512.cc.o -MF CMakeFiles/fbgemm_avx512.dir/src/EmbeddingSpMDMAvx512.cc.o.d -o CMakeFiles/fbgemm_avx512.dir/src/EmbeddingSpMDMAvx512.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/s/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwisePerChannelQuantAvx2.cc.o -MF CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwisePerChannelQuantAvx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwisePerChannelQuantAvx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMmake[2]: Nothing to be done for `googletest/googletest/CMakeFiles/gtest.dir/build'.
M/src/FbgemmI8DepthwisePerChannelQuantAvx2.cc
rc/EmbeddingSpMDMAvx512.cc
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mfma -mavx512f -mavx512bw -mavx512dq -mavx512vl -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseAvx512.cc.o -MF CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseAvx512.cc.o.d -o CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseAvx512.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/FbgemmSparseDenseAvx512.cc
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx2.dir/src/QuantUtilsAvx2.cc.o -MF CMakeFiles/fbgemm_avx2.dir/src/QuantUtilclang: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512f' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512bw' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512dq' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512vl' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]
clang: error: argclang: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512f' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512bw' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512dq' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512vl' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512f' [-Werror,-Wunused-command-line-argument]
ument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]clang: sAvx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/QuantUtilsAvx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/QuantUtilsAvx2.cc

error: clangargument unused during compilation: '-mavx512bw' [-Werror,-Wunused-command-line-argument]: 
clang: error: error: clangargument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]: argument unused during compilation: '-mavx512dq' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512vl' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-masm=intel' [-Werror,-Wunused-command-line-argument]

clang: error: argument unused during com/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx2.dir/src/PackDepthwiseConvMatrixAvx2.cc.o -MF CMakeFiles/fbgemm_avx2.dir/src/PackDepthwiseConvMatrixAvx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/PackDepthwiseConvMatrixAvx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/PackDepthwiseConvMatrixAvx2.cc
make[2]: *** [CMakeFiles/fbgemm_avx512.dir/src/FbgemmFP16UKernelsAvx512_256.cc.o] Error 1
clang: make[2]: *** Waiting for unfinished jobs....
error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
make[2]: clang: pilation: '-mfma' [-Werror,-Wunused-command-line-argument]error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
error: clang: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]argument unused during compilation: '-mavx512f' [-Werror,-Wunused-command-line-argument]

clang: error: argument unused during compilation: '-mavx512bw' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512dq' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512vl' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-masm=intel' [-Werror,-Wunused-command-line-argument]
clangclang
: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]clang
: error: clangmake[2]: : argument unused during compilation: '-mavx512f' [-Werror,-Wunused-command-line-argument]error: 
argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]
clangclang: : error: error: argument unused during compilation: '-mavx512bw' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512dq' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512vl' [-Werror,-Wunused-command-line-argument]
argument unused during compilation: '-mfma' [-Wclang: error: argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
error,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-masm=intel' [-Werror,-Wunused-command-line-argument]
: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512f' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512bw' [-Werror,-Wunused-command-line-argument]clang*** [CMakeFiles/fbgemm_avx2.dir/src/FbgemmBfloat16ConvertAvx2.cc.o] Error 1: *** [CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseVectorInt8Avx512.cc.o] Error 1

error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]make[2]: *** [CMakeFiles/fbgemm_avx512.dir/src/FbgemmFP16UKernelsAvx512.cc.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: *** [CMakeFiles/fbgemm_avx512.dir/src/UtilsAvx512.cc.o] Error 1
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/UtilsAvxmake[2]: *** [CMakeFiles/fbgemm_avx512.dir/src/FbgemmBfloat16ConvertAvx512.cc.o] Error 1

clang: error: argument unused during compilation: '-mavx512dq' [-Werror,-Wunused-command-line-argument]

clang: error: argument unused during compilation: '-mavx512vl' [-Werror,-Wunused-command-line-argument]
2.cc.o] Error 1
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/FbgemmFP16UKernelsAvx2.cc.o] Error 1
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8Depthwise3DAvx2.cc.o] Error 1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx2.dir/src/OptimizedKernelsAvx2.cc.o -MF CMakeFiles/fbgemm_avx2.dir/src/OptimizedKernelsAvx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/OptimizedKernelsAvx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/OptimizedKernelsAvx2.cc
clang: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512f' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512bw' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512dq' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512vl' [-Werror,-Wunused-command-line-argument]
make[2]: make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwisePerChannelQuantAvx2.cc.o] Error 1*** [CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseInt8Avx512.cc.o] Error 1

/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx2.dir/src/FbgemmSparseDenseAvx2.cc.o -MF CMakeFiles/fbgemm_avx2.dir/src/FbgemmSparseDenseAvx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/FbgemmSparseDenseAvx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/FbgemmSparseDenseAvx2.cc
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -Wno-uninitialized -MD -MT CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwiseAvx2.cc.o -MF CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwiseAvx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwiseAvx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/FbgemmI8DepthwiseAvx2.cc
make[2]: *** [CMakeFiles/fbgemm_avx512.dir/src/EmbeddingSpMDMAvx512.cc.o] Error 1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx2.dir/src/EmbeddingSpMDMAvx2.cc.o -MF CMakeFiles/fbgemm_avx2.dir/src/EmbeddingSpMDMAvx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/EmbeddingSpMDMAvx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/EmbeddingSpMDMAvx2.cc
clang: clang: error: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512f' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512bw' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512dq' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512vl' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]clang: 
clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]error: 
argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
make[2]: *** [CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseAvx512.cc.o] Error 1
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/PackDepthwiseConvMatrixAvx2.cc.o] Error 1
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/QuantUtilsAvx2.cc.o] Error 1
clang: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/FbgemmSparseDenseAvx2.cc.o] Error 1
clang: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/OptimizedKernelsAvx2.cc.o] Error 1
[  4%] Building CXX object CMakeFiles/fbgemm_avx512.dir/src/QuantUtilsAvx512.cc.o
[  4%] Building CXX object CMakeFiles/fbgemm_avx2.dir/src/spmmUtilsAvx2.cc.o
[  4%] Building CXX object CMakeFiles/fbgemm_avx512.dir/src/FbgemmFloat16ConvertAvx512.cc.o
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/EmbeddingSpMDMAvx2.cc.o] Error 1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx2.dir/src/spmmUtilsAvx2.cc.o -MF CMakeFiles/fbgemm_avx2.dir/src/spmmUtilsAvx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/spmmUtilsAvx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommenda/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mfma -mavx512f -mavx512bw -mavx512dq -mavx512vl -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx512.dir/src/QuantUtilsAvx512.cc.o -MF CMakeFiles/fbgemm_avx512.dir/src/QuantUtilsAvx512.cc.o.d -o CMakeFiles/fbgemm_avx512.dir/src/QuantUtilsAvx512.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/QuantUtilsAvx512.cc
tion/FBGEMM/src/spmmUtilsAvx2.cc
clang: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwiseAvx2.cc.o] Error 1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mfma -mavx512f -mavx512bw -mavx512dq -mavx512vl -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx512.dir/src/FbgemmFloat16ConvertAvx512.cc.o -MF CMakeFiles/fbgemm_avx512.dir/src/FbgemmFloat16ConvertAvx512.cc.o.d -o CMakeFiles/fbgemm_avx512.dir/src/FbgemmFloat16ConvertAvx512.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/FbgemmFloat16ConvertAvx512.cc
[  7%] Building CXX object CMakeFiles/fbgemm_avx2.dir/src/FbgemmSparseDenseInt8Avx2.cc.o
[  7%] Building CXX object CMakeFiles/fbgemm_avx2.dir/src/FbgemmFloat16ConvertAvx2.cc.o
[  7%] Built target gtest
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx2.dir/src/FbgemmSparseDenseInt8Avx2.cc.o -MF CMDependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64instapi.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f googletest/googletest/CMakeFiles/gtest_main.dir/build.make googletest/googletest/CMakeFiles/gtest_main.dir/depend
akeFiles/fbgemm_avx2.dir/src/FbgemmSparseDenseInt8Avx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/FbgemmSparseDenseInt8Avx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/FbgemmSparseDenseInt8Avx2.cc
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx2.dir/src/FbgemmFloat16ConvertAvx2.cc.o -MF CMakeFiles/fbgemm_avx2.dir/src/FbgemmFloat16ConvertAvx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/FbgemmFloat16ConvertAvx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/FbgemmFloat16ConvertAvx2.cc
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f googletest/googlemock/CMakeFiles/gmock.dir/build.make googletest/googlemock/CMakeFiles/gmock.dir/depend
clang: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512f' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512bw' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512dq' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512vl' [-Werror,-Wunused-command-line-argument]
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/spmmUtilsAvx2.cc.o] Error 1
clang: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512f' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512bw' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512dq' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512vl' [-Werror,-Wunused-command-line-argument]
make[2]: *** [CMakeFiles/fbgemm_avx512.dir/src/FbgemmFloat16ConvertAvx512.cc.o] Error 1
make[2]: *** [CMakeFiles/fbgemm_avx512.dir/src/QuantUtilsAvx512.cc.o] Error 1
make[1]: *** [CMakeFiles/fbgemm_avx512.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
clang: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang: clang: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang: error: error: argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]
clang: error: 
argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/FbgemmFloat16ConvertAvx2.cc.o] Error 1
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/FbgemmSparseDenseInt8Avx2.cc.o] Error 1
make[1]: *** [CMakeFiles/fbgemm_avx2.dir/all] Error 2
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64instdb.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64operand.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build && /Users/Quy.Vu/.pyenv/versions/3.11/envs/everything/lib/python3.11/site-packages/cmake/data/bin/cmake -E cmake_depends "Unix Makefiles" /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo/CMakeFiles/cpuinfo.dir/DependInfo.cmake "--color="
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64rapass.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build && /Users/Quy.Vu/.pyenv/versions/3.11/envs/everything/lib/python3.11/site-packages/cmake/data/bin/cmake -E cmake_depends "Unix Makefiles" /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo/CMakeFiles/cpuinfo_internals.dir/DependInfo.cmake "--color="
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build && /Users/Quy.Vu/.pyenv/versions/3.11/envs/everything/lib/python3.11/site-packages/cmake/data/bin/cmake -E cmake_depends "Unix Makefiles" /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/googletest/googletest /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/googletest/googletest /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/googletest/googletest/CMakeFiles/gtest_main.dir/DependInfo.cmake "--color="
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build && /Users/Quy.Vu/.pyenv/versions/3.11/envs/everything/lib/python3.11/site-packages/cmake/data/bin/cmake -E cmake_depends "Unix Makefiles" /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/googletest/googlemock /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/googletest/googlemock /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/googletest/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake "--color="
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/armformatter.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/archtraits.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f googletest/googletest/CMakeFiles/gtest_main.dir/build.make googletest/googletest/CMakeFiles/gtest_main.dir/build
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/assembler.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f cpuinfo/CMakeFiles/cpuinfo_internals.dir/build.make cpuinfo/CMakeFiles/cpuinfo_internals.dir/build
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f cpuinfo/CMakeFiles/cpuinfo.dir/build.make cpuinfo/CMakeFiles/cpuinfo.dir/build
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f googletest/googlemock/CMakeFiles/gmock.dir/build.make googletest/googlemock/CMakeFiles/gmock.dir/build
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/builder.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
[  7%] Building CXX object googletest/googletest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/googletest/googletest && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -isystem /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/googletest/googletest/include -isystem /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/googletest/googletest -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++11 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fvisibility=hidden -Wall -Wshadow -Werror -Wconversion -DGTEST_HAS_PTHREAD=1 -fexceptions -W -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wredundant-decls -MD -MT googletest/googletest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o -MF CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.d -o CMakeFiles/gtest_main.dir/src/gtest_main.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/googletest/googletest/src/gtest_main.cc
[  7%] Building C object cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o
[  7%] Building C object cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/init.c.o
[  7%] Building C object cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o
[  7%] Building C object cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/api.c.o
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -DCPUINFO_LOG_LEVEL=0 -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/deps/clog/include -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -MD -MT cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/init.c.o -MF CMakeFiles/cpuinfo_internals.dir/src/init.c.o.d -o CMakeFiles/cpuinfo_internals.dir/src/init.c.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src/init.c
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -DCPUINFO_LOG_LEVEL=2 -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/deps/clog/include -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -MD -MT cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o -MF CMakeFiles/cpuinfo.dir/src/init.c.o.d -o CMakeFiles/cpuinfo.dir/src/init.c.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src/init.c
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -DCPUINFO_LOG_LEVEL=0 -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/deps/clog/include -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -MD -MT cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/api.c.o -MF CMakeFiles/cpuinfo_internals.dir/src/api.c.o.d -o CMakeFiles/cpuinfo_internals.dir/src/api.c.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src/api.c
[  8%] Building C object cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/cache.c.o
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -DCPUINFO_LOG_LEVEL=2 -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/deps/clog/include -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -MD -MT cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o -MF CMakeFiles/cpuinfo.dir/src/cache.c.o.d -o CMakeFiles/cpuinfo.dir/src/cache.c.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src/cache.c
[  9%] Building C object cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c[  9%] Building CXX object googletest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o
.o
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/googletest/googlemock && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/googletest/googlemock/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/googletest/googlemock -isystem /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/googletest/googletest/include -isystem /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/googletest/googletest -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++11 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fvisibility=hidden -Wall -Wshadow -Werror -Wconversion -DGTEST_HAS_PTHREAD=1 -fexceptions -W -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wredundant-decls -Wno-deprecated-copy -MD -MT googletest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o -MF CMakeFiles/gmock.dir/src/gmock-all.cc.o.d -o CMakeFiles/gmock.dir/src/gmock-all.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/googletest/googlemock/src/gmock-all.cc
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -DCPUINFO_LOG_LEVEL=0 -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/deps/clog/include -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -MD -MT cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/cache.c.o -MF CMakeFiles/cpuinfo_internals.dir/src/cache.c.o.d -o CMakeFiles/cpuinfo_internals.dir/src/cache.c.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src/cache.c
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -DCPUINFO_LOG_LEVEL=2 -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/deps/clog/include -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -MD -MT cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o -MF CMakeFiles/cpuinfo.dir/src/api.c.o.d -o CMakeFiles/cpuinfo.dir/src/api.c.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src/api.c
[  9%] Building C object cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/cache.c.o
[  9%] Building C object cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/cache.c.o
[  9%] Building C object cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/uarch.c.o
[  9%] Building C object cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/uarch.c.o
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -DCPUINFO_LOG_LEVEL=0 -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/deps/clog/include -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -MD -MT cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/uarch.c.o -MF CMakeFiles/cpuinfo_internals.dir/src/arm/uarch.c.o.d -o CMakeFiles/cpuinfo_internals.dir/src/arm/uarch.c.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src/arm/uarch.c
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -DCPUINFO_LOG_LEVEL=2 -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/deps/clog/include -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -MD -MT cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/uarch.c.o -MF CMakeFiles/cpuinfo.dir/src/arm/uarch.c.o.d -o CMakeFiles/cpuinfo.dir/src/arm/uarch.c.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src/arm/uarch.c
[  9%] Building C object cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/mach/init.c.o
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -DCPUINFO_LOG_LEVEL=0 -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/deps/clog/include -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -MD -MT cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/cache.c.o -MF CMakeFiles/cpuinfo_internals.dir/src/arm/cache.c.o.d -o CMakeFiles/cpuinfo_internals.dir/src/arm/cache.c.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src/arm/cache.c
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -DCPUINFO_LOG_LEVEL=2 -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/deps/clog/include -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -MD -MT cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/mach/init.c.o -MF CMakeFiles/cpuinfo.dir/src/arm/mach/init.c.o.d -o CMakeFiles/cpuinfo.dir/src/arm/mach/init.c.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src/arm/mach/init.c
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/codeholder.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -DCPUINFO_LOG_LEVEL=2 -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/deps/clog/include -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -MD -MT cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/cache.c.o -MF CMakeFiles/cpuinfo.dir/src/arm/cache.c.o.d -o CMakeFiles/cpuinfo.dir/src/arm/cache.c.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src/arm/cache.c
[  9%] Building C object cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/mach/init.c.o
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -DCPUINFO_LOG_LEVEL=0 -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/deps/clog/include -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -MD -MT cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/mach/init.c.o -MF CMakeFiles/cpuinfo_internals.dir/src/arm/mach/init.c.o.d -o CMakeFiles/cpuinfo_internals.dir/src/arm/mach/init.c.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src/arm/mach/init.c
[  9%] Building C object cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/mach/topology.c.o
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -DCPUINFO_LOG_LEVEL=0 -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/deps/clog/include -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -MD -MT cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/mach/topology.c.o -MF CMakeFiles/cpuinfo_internals.dir/src/mach/topology.c.o.d -o CMakeFiles/cpuinfo_internals.dir/src/mach/topology.c.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src/mach/topology.c
[ 10%] Building C object cpuinfo/CMakeFiles/cpuinfo.dir/src/mach/topology.c.o
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -DCPUINFO_LOG_LEVEL=2 -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/deps/clog/include -O3 -DNDEBUG -std=c99 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -MD -MT cpuinfo/CMakeFiles/cpuinfo.dir/src/mach/topology.c.o -MF CMakeFiles/cpuinfo.dir/src/mach/topology.c.o.d -o CMakeFiles/cpuinfo.dir/src/mach/topology.c.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/src/mach/topology.c
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/codewriter.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/compiler.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/constpool.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/cpuinfo.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/emithelper.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/emitter.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/emitterutils.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f CMakeFiles/fbgemm_generic.dir/build.make CMakeFiles/fbgemm_generic.dir/build
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/environment.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/errorhandler.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/formatter.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/func.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/funcargscontext.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/globals.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/inst.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/jitallocator.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/jitruntime.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/logger.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/operand.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/osutils.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/ralocal.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/rapass.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
make[2]: Nothing to be done for `CMakeFiles/fbgemm_generic.dir/build'.
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/rastack.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/string.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
[ 19%] Built target fbgemm_generic
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/support.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/target.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/type.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/virtmem.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zone.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zonehash.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zonelist.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zonestack.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zonetree.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zonevector.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86assembler.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86builder.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86compiler.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86emithelper.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86formatter.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86func.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86instapi.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86instdb.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86operand.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Dependencies file "asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86rapass.cpp.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target asmjit
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f asmjit/CMakeFiles/asmjit.dir/build.make asmjit/CMakeFiles/asmjit.dir/build
[ 20%] Linking C static library libcpuinfo.a
[ 20%] Linking C static library libcpuinfo_internals.a
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo && /Users/Quy.Vu/.pyenv/versions/3.11/envs/everything/lib/python3.11/site-packages/cmake/data/bin/cmake -P CMakeFiles/cpuinfo.dir/cmake_clean_target.cmake
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo && /Users/Quy.Vu/.pyenv/versions/3.11/envs/everything/lib/python3.11/site-packages/cmake/data/bin/cmake -P CMakeFiles/cpuinfo_internals.dir/cmake_clean_target.cmake
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo && /Users/Quy.Vu/.pyenv/versions/3.11/envs/everything/lib/python3.11/site-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cpuinfo.dir/link.txt --verbose=1
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo && /Users/Quy.Vu/.pyenv/versions/3.11/envs/everything/lib/python3.11/site-packages/cmake/data/bin/cmake -E cmake_link_script CMakeFiles/cpuinfo_internals.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ar qc libcpuinfo_internals.a CMakeFiles/cpuinfo_internals.dir/src/init.c.o CMakeFiles/cpuinfo_internals.dir/src/api.c.o CMakeFiles/cpuinfo_internals.dir/src/cache.c.o CMakeFiles/cpuinfo_internals.dir/src/arm/uarch.c.o CMakeFiles/cpuinfo_internals.dir/src/arm/cache.c.o CMakeFiles/cpuinfo_internals.dir/src/arm/mach/init.c.o CMakeFiles/cpuinfo_internals.dir/src/mach/topology.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ar qc libcpuinfo.a CMakeFiles/cpuinfo.dir/src/init.c.o CMakeFiles/cpuinfo.dir/src/api.c.o CMakeFiles/cpuinfo.dir/src/cache.c.o CMakeFiles/cpuinfo.dir/src/arm/uarch.c.o CMakeFiles/cpuinfo.dir/src/arm/cache.c.o CMakeFiles/cpuinfo.dir/src/arm/mach/init.c.o CMakeFiles/cpuinfo.dir/src/mach/topology.c.o
make[2]: Nothing to be done for `asmjit/CMakeFiles/asmjit.dir/build'.
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib libcpuinfo.a
[ 33%] Built target asmjit
[ 33%] Built target cpuinfo
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib libcpuinfo_internals.a
(everything) ➜  build git:(main) make -j VERBOSE=1
/Users/Quy.Vu/.pyenv/versions/3.11/envs/everything/lib/python3.11/site-packages/cmake/data/bin/cmake -S/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -B/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build --check-build-system CMakeFiles/Makefile.cmake 0
/Users/Quy.Vu/.pyenv/versions/3.11/envs/everything/lib/python3.11/site-packages/cmake/data/bin/cmake -E cmake_progress_start /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/CMakeFiles /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build//CMakeFiles/progress.marks
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f CMakeFiles/Makefile2 all
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f CMakeFiles/defs.bzl.dir/build.make CMakeFiles/defs.bzl.dir/depend
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f asmjit/CMakeFiles/asmjit.dir/build.make asmjit/CMakeFiles/asmjit.dir/depend
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f cpuinfo/deps/clog/CMakeFiles/clog.dir/build.make cpuinfo/deps/clog/CMakeFiles/clog.dir/depend
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f googletest/googletest/CMakeFiles/gtest.dir/build.make googletest/googletest/CMakeFiles/gtest.dir/depend
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build && /Users/Quy.Vu/.pyenv/versions/3.11/envs/everything/lib/python3.11/site-packages/cmake/data/bin/cmake -E cmake_depends "Unix Makefiles" /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/CMakeFiles/defs.bzl.dir/DependInfo.cmake "--color="
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build && /Users/Quy.Vu/.pyenv/versions/3.11/envs/everything/lib/python3.11/site-packages/cmake/data/bin/cmake -E cmake_depends "Unix Makefiles" /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/deps/clog /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo/deps/clog /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo/deps/clog/CMakeFiles/clog.dir/DependInfo.cmake "--color="
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build && /Users/Quy.Vu/.pyenv/versions/3.11/envs/everything/lib/python3.11/site-packages/cmake/data/bin/cmake -E cmake_depends "Unix Makefiles" /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/googletest/googletest /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/googletest/googletest /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/googletest/googletest/CMakeFiles/gtest.dir/DependInfo.cmake "--color="
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f CMakeFiles/defs.bzl.dir/build.make CMakeFiles/defs.bzl.dir/build
make[2]: Nothing to be done for `CMakeFiles/defs.bzl.dir/build'.
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f cpuinfo/deps/clog/CMakeFiles/clog.dir/build.make cpuinfo/deps/clog/CMakeFiles/clog.dir/build
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f googletest/googletest/CMakeFiles/gtest.dir/build.make googletest/googletest/CMakeFiles/gtest.dir/build
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build && /Users/Quy.Vu/.pyenv/versions/3.11/envs/everything/lib/python3.11/site-packages/cmake/data/bin/cmake -E cmake_depends "Unix Makefiles" /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/asmjit/CMakeFiles/asmjit.dir/DependInfo.cmake "--color="
make[2]: Nothing to be done for `cpuinfo/deps/clog/CMakeFiles/clog.dir/build'.
[  0%] Built target defs.bzl
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f CMakeFiles/fbgemm_generic.dir/build.make CMakeFiles/fbgemm_generic.dir/depend
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f CMakeFiles/fbgemm_avx2.dir/build.make CMakeFiles/fbgemm_avx2.dir/depend
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f CMakeFiles/fbgemm_avx512.dir/build.make CMakeFiles/fbgemm_avx512.dir/depend
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build && /Users/Quy.Vu/.pyenv/versions/3.11/envs/everything/lib/python3.11/site-packages/cmake/data/bin/cmake -E cmake_depends "Unix Makefiles" /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/CMakeFiles/fbgemm_avx512.dir/DependInfo.cmake "--color="
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build && /Users/Quy.Vu/.pyenv/versions/3.11/envs/everything/lib/python3.11/site-packages/cmake/data/bin/cmake -E cmake_depends "Unix Makefiles" /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/CMakeFiles/fbgemm_avx2.dir/DependInfo.cmake "--color="
[  1%] Built target clog
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f cpuinfo/CMakeFiles/cpuinfo.dir/build.make cpuinfo/CMakeFiles/cpuinfo.dir/depend
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f cpuinfo/CMakeFiles/cpuinfo_internals.dir/build.make cpuinfo/CMakeFiles/cpuinfo_internals.dir/depend
make[2]: Nothing to be done for `googletest/googletest/CMakeFiles/gtest.dir/build'.
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build && /Users/Quy.Vu/.pyenv/versions/3.11/envs/everything/lib/python3.11/site-packages/cmake/data/bin/cmake -E cmake_depends "Unix Makefiles" /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo/CMakeFiles/cpuinfo_internals.dir/DependInfo.cmake "--color="
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build && /Users/Quy.Vu/.pyenv/versions/3.11/envs/everything/lib/python3.11/site-packages/cmake/data/bin/cmake -E cmake_depends "Unix Makefiles" /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo/CMakeFiles/cpuinfo.dir/DependInfo.cmake "--color="
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f CMakeFiles/fbgemm_avx512.dir/build.make CMakeFiles/fbgemm_avx512.dir/build
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f CMakeFiles/fbgemm_avx2.dir/build.make CMakeFiles/fbgemm_avx2.dir/build
Dependencies file "cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo/CMakeFiles/cpuinfo.dir/compiler_depend.internal".
Dependencies file "cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/api.c.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo/CMakeFiles/cpuinfo_internals.dir/compiler_depend.internal".
[  1%] Building CXX object CMakeFiles/fbgemm_avx512.dir/src/EmbeddingSpMDMAvx512.cc.o
[  1%] Building CXX object CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseInt8Avx512.cc.o
[  1%] Building CXX object CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseAvx512.cc.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mfma -mavx512f -mavx512bw -mavx512dq -mavx512vl -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseInt8Avx512.cc.o -MF CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseInt8Avx512.cc.o.d -o CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseInt8Avx512.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/FbgemmSparseDenseInt8Avx512.cc
[  3%] Building CXX object CMakeFiles/fbgemm_avx2.dir/src/EmbeddingSpMDMAvx2.cc.o
[  4%] Building CXX object CMakeFiles/fbgemm_avx512.dir/src/QuantUtilsAvx512.cc.o
[  4%] Building CXX object CMakeFiles/fbgemm_avx512.dir/src/FbgemmBfloat16ConvertAvx512.cc.o
[  4%] Building CXX object CMakeFiles/fbgemm_avx2.dir/src/FbgemmBfloat16ConvertAvx2.cc.o
[  1%] Building CXX object CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseVectorInt8Avx512.cc.o
Dependencies file "cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/cache.c.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo/CMakeFiles/cpuinfo.dir/compiler_depend.internal".
[  4%] Built target gtest
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f asmjit/CMakeFiles/asmjit.dir/build.make asmjit/CMakeFiles/asmjit.dir/build
Dependencies file "cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/cache.c.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub[  5%] Building CXX object CMakeFiles/fbgemm_avx512.dir/src/UtilsAvx512.cc.o
/two-tower-recommendation/FBGEMM/build/cpuinfo/CMakeFiles/cpuinfo_internals.dir/compiler_depend.internal".
[  5%] Building CXX object CMakeFiles/fbgemm_avx2.dir/src/FbgemmFloat16ConvertAvx2.cc.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -MD -MT[  5%] Building CXX object CMakeFiles/fbgemm_avx512.dir/src/FbgemmFP16UKernelsAvx512_256.cc.o
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f googletest/googletest/CMakeFiles/gtest_main.dir/build.make googletest/googletest/CMakeFiles/gtest_main.dir/depend
[  5%] Building CXX object CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwiseAvx2.cc.o
[  5%] Building CXX object CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwisePerChannelQuantAvx2.cc.o
 CMakeFiles/fbgemm_avx2.dir/src/FbgemmBfloat16ConvertAvx2.cc.o -MF CMakeFiles/fbgemm_avx2.dir/src/FbgemmBfloat16ConvertAvx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/FbgemmBfloat16ConvertAvx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/FbgemmBfloat16ConvertAvx2.cc
[  5%] Building CXX object CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8Depthwise3DAvx2.cc.o
[  5%] Building CXX object CMakeFiles/fbgemm_avx512.dir/src/FbgemmFP16UKernelsAvx512.cc.o
[  5%] Building CXX object CMakeFiles/fbgemm_avx512.dir/src/FbgemmFloat16ConvertAvx512.cc.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mfma -mavx512f -mavx512bw -mavx512dq -mavx512vl -fsanitize=address -fno-omit-frame-pointer -masm=intel -MD -MT CMakeFiles/fbgemm_avx512.dir/src/FbgemmFP16UKernelsAvx512.cc.o -MF CMakeFiles/fbgemm_avx512.dir/src/FbgemmFP16UKernelsAvx512.cc.o.d -o CMakeFi/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f googletest/googlemock/CMakeFiles/gmock.dir/build.make googletest/googlemock/CMakeFiles/gmock.dir/depend
[  5%] Building CXX object CMakeFiles/fbgemm_avx2.dir/src/FbgemmSparseDenseAvx2.cc.o
les/fbgemm_avx512.dir/src/FbgemmFP16UKernelsAvx512.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/FbgemmFP16UKernelsAvx512.cc
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mfma -mavx512f -mavx512bw -mavx512dq -mavx512vl -fsanitize=address -fno-omit-frame-pointer -masm=intel -MD -MT CMakeFiles/fbgemm_avx512.dir/src/FbgemmFP16UKernelsAvx512_256.cc.o -MF CMakeFiles/fbgemm_avx512.dir/src/FbgemmFP16UKernelsAvx512_256.cc.o.d -o CMakeFiles/fbgemm_avx512.dir/src/FbgemmFP16UKernelsAvx512_256.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/FbgemmFP16UKernelsAvx512_256.cc
/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -Wno-uninitialized -MD -MT CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwiseAvx2.cc.o -MF CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwiseAvx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwiseAvx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/FbgemmI8DepthwiseAvx2.cc
[  5%] Building CXX object CMakeFiles/fbgemm_avx2.dir/src/OptimizedKernelsAvx2.cc.o
[  5%] Building CXX object CMakeFiles/fbgemm_avx2.dir/src/PackDepthwiseConvMatrixAvx2.cc.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mfma -mavx512f -mavx512bw -mavx512dq -mavx512vl -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx512.dir/src/UtilsAvx512.cc.o -MF CMakeFiles/fbgemm_avx512.dir/src/UtilsAvx512.cc.o.d -o CMakeFiles/fbgemm_avx512.dir/src/UtilsAvx512.c[  5%] Building CXX object CMakeFiles/fbgemm_avx2.dir/src/UtilsAvx2.cc.o
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build && /Users/Quy.Vu/.pyenv/versions/3.11/envs/everything/lib/python3.11/site-packages/cmake/data/bin/cmake -E cmake_depends "Unix Makefiles" /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/googletest/googletest /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/googletest/googletest /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/googletest/googletest/CMakeFiles/gtest_main.dir/DependInfo.cmake "--color="
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmcd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build && /Users/Quy.Vu/.pyenv/versions/3.11/envs/everything/lib/python3.11/site-packages/cmake/data/bin/cmake -E cmake_depends "Unix Makefiles" /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/googletest/googlemock /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/googletest/googlemock /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/googletest/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake "--color="
c.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/UtilsAvx512.cc
jit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx2.dir/src/FbgemmSparseDenseAvx2.cc.o -MF CMakeFiles/fbgemm_avx2.dir/src/FbgemmSparseDenseAvx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/FbgemmSparseDenseAvx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/FbgemmSparseDenseAvx2.cc
[  5%] Building CXX object CMakeFiles/fbgemm_avx2.dir/src/QuantUtilsAvx2.cc.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mfma -mavx512f -mavx512bw -mavx512dq -mavx512vl -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx512.dir/src/QuantUtilsAvx512.cc.o -MF CMakeFiles/fbgemm_avx512.dir/src/QuantUtilsAvx512.cc.o.d -o CMakeFiles/fbgemm_avx512.dir/src/QuantUtilsAvx512.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/QuantUtilsAvx512.cc
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -Wno-uninitialized -MD -MT CMakeFiles/fbgemm_avx2.dir/src/UtilsAvx2.cc.o -MF CMakeFiles/fbgemm_avx2.dir/src/UtilsAvx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/UtilsAvx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/UtilsAvx2.cc
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mfma -mavx512f -mavx512bw -mavx512dq -mavx512vl -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx512.dir/src/FbgemmFloat16ConvertAvx512.cc.o -MF CMakeFiles/fbgemm_avx512.dir/src/FbgemmFloat16ConvertAvx512.cc.o.d -o CMakeFiles/fbgemm_avx512.dir/src/FbgemmFloat16ConvertAvx512.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/FbgemmFloat16ConvertAvx512.cc
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx2.dir/src/PackDepthwiseConvMatrixAvx2.cc.o -MF CMakeFiles/fbgemm_avx2.dir/src/PackDepthwiseConvMatrixAvx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/PackDepthwiseConvMatrixAvx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/PackDepthwiseConvMatrixAvx2.cc
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mfma -mavx512f -mavx512bw -mavx512dq -mavx512vl -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx512.dir/src/FbgemmBfloat16ConvertAvx512.cc.o -MF CMakeFiles/fbgemm_avx512.dir/src/FbgemmBfloat16ConvertAvx512.cc.o.d -o CMakeFiles/fbgemm_avx512.dir/src/FbgemmBfloat16ConvertAvx512.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/FbgemmBfloat16ConvertAvx512.cc
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx2.dir/src/QuantUtilsAvx2.cc.o -MF CMakeFiles/fbgemm_avx2.dir/src/QuantUtilsAvx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/QuantUtilsAvx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/QuantUtilsAvx2.cc
cd /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build && /Users/Quy.Vu/.pyenv/versions/3.11/envs/everything/lib/python3.11/site-packages/cmake/data/bin/cmake -E cmake_depends "Unix Makefiles" /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/CMakeFiles/fbgemm_generic.dir/DependInfo.cmake "--color="
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mfma -mavx512f -mavx512bw -mavx512dq -mavx512vl -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseVectorInt8Avx512.cc.o -MF CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseVectorInt8Avx512.cc.o.d -o CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseVectorInt8Avx512.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/FbgemmSparseDenseVectorInt8Avx512.cc
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx2.dir/src/OptimizedKernelsAvx2.cc.o -MF CMakeFiles/fbgemm_avx2.dir/src/OptimizedKernelsAvx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/OptimizedKernelsAvx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/OptimizedKernelsAvx2.cc
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwisePerChannelQuantAvx2.cc.o -MF CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwisePerChannelQuantAvx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwisePerChannelQuantAvx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/FbgemmI8DepthwisePerChannelQuantAvx2.cc
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mfma -mavx512f -mavx512bw -mavx512dq -mavx512vl -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseAvx512.cc.o -MF CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseAvx512.cc.o.d -o CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseAvx512.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/FbgemmSparseDenseAvx512.cc
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mfma -mavx512f -mavx512bw -mavx512dq -mavx512vl -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx512.dir/src/EmbeddingSpMDMAvx512.cc.o -MF CMakeFiles/fbgemm_avx512.dir/src/EmbeddingSpMDMAvx512.cc.o.d -o CMakeFiles/fbgemm_avx512.dir/src/EmbeddingSpMDMAvx512.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/EmbeddingSpMDMAvx512.cc
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -Wno-uninitialized -MD -MT CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8Depthwise3DAvx2.cc.o -MF CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8Depthwise3DAvx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8Depthwise3DAvx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/FbgemmI8Depthwise3DAvx2.cc
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx2.dir/src/EmbeddingSpMDMAvx2.cc.o -MF CMakeFiles/fbgemm_avx2.dir/src/EmbeddingSpMDMAvx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/EmbeddingSpMDMAvx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/EmbeddingSpMDMAvx2.cc
Dependencies file "cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/mach/init.c.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo/CMakeFiles/cpuinfo.dir/compiler_depend.internal".
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx2.dir/src/FbgemmFloat16ConvertAvx2.cc.o -MF CMakeFiles/fbgemm_avx2.dir/src/FbgemmFloat16ConvertAvx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/FbgemmFloat16ConvertAvx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/FbgemmFloat16ConvertAvx2.cc
Dependencies file "cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/mach/init.c.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo/CMakeFiles/cpuinfo_internals.dir/compiler_depend.internal".
Dependencies file "googletest/googletest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/googletest/googletest/CMakeFiles/gtest_main.dir/compiler_depend.internal".
Dependencies file "googletest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/googletest/googlemock/CMakeFiles/gmock.dir/compiler_depend.internal".
Dependencies file "cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/uarch.c.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo/CMakeFiles/cpuinfo_internals.dir/compiler_depend.internal".
Dependencies file "cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/uarch.c.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo/CMakeFiles/cpuinfo.dir/compiler_depend.internal".
Dependencies file "cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/cache.c.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo/CMakeFiles/cpuinfo_internals.dir/compiler_depend.internal".
Dependencies file "cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo/CMakeFiles/cpuinfo.dir/compiler_depend.internal".
Dependencies file "cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/init.c.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo/CMakeFiles/cpuinfo_internals.dir/compiler_depend.internal".
Dependencies file "cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo/CMakeFiles/cpuinfo.dir/compiler_depend.internal".
[  7%] Building CXX object CMakeFiles/fbgemm_avx2.dir/src/spmmUtilsAvx2.cc.o
[  7%] Building CXX object CMakeFiles/fbgemm_avx2.dir/src/FbgemmFP16UKernelsAvx2.cc.o
[  7%] Building CXX object CMakeFiles/fbgemm_avx2.dir/src/FbgemmSparseDenseInt8Avx2.cc.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -masm=intel -MD -MT CMakeFiles/fbgemm_avx2.dir/src/FbgemmFP16UKernelsAvx2.cc.o -MF CMakeFiles/fbgemm_avx2.dir/src/FbgemmFP16UKernelsAvx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/FbgemmFP16UKernelsAvx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/FbgemmFP16UKernelsAvx2.cc
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx2.dir/src/spmmUtilsAvx2.cc.o -MF CMakeFiles/fbgemm_avx2.dir/src/spmmUtilsAvx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/spmmUtilsAvx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/spmmUtilsAvx2.cc
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++  -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/cpuinfo/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/third_party/asmjit/src -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/include -I/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM -Wall -Wextra -Werror -Wno-deprecated-declarations -Wimplicit-fallthrough -O3 -DNDEBUG -std=c++17 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC -fvisibility=hidden -m64 -mavx2 -mf16c -mfma -fsanitize=address -fno-omit-frame-pointer -MD -MT CMakeFiles/fbgemm_avx2.dir/src/FbgemmSparseDenseInt8Avx2.cc.o -MF CMakeFiles/fbgemm_avx2.dir/src/FbgemmSparseDenseInt8Avx2.cc.o.d -o CMakeFiles/fbgemm_avx2.dir/src/FbgemmSparseDenseInt8Avx2.cc.o -c /Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/src/FbgemmSparseDenseInt8Avx2.cc
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f CMakeFiles/fbgemm_generic.dir/build.make CMakeFiles/fbgemm_generic.dir/build
make[2]: Nothing to be done for `asmjit/CMakeFiles/asmjit.dir/build'.
Dependencies file "cpuinfo/CMakeFiles/cpuinfo.dir/src/mach/topology.c.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo/CMakeFiles/cpuinfo.dir/compiler_depend.internal".
Dependencies file "cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/mach/topology.c.o.d" is newer than depends file "/Users/Quy.Vu/Documents/GitHub/two-tower-recommendation/FBGEMM/build/cpuinfo/CMakeFiles/cpuinfo_internals.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target cpuinfo
Consolidate compiler generated dependencies of target cpuinfo_internals
Consolidate compiler generated dependencies of target gmock
Consolidate compiler generated dependencies of target gtest_main
clangclang: : error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
error: clangargument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clangclang: error: argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]
clang: error: clang: clang: clangclangclang: : clang: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]error: clang: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx2' [-Werrclangclang: clang: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512f' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512bw' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512dq' [-Werror,-Wunused-command-line-argument]: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
error: clang: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]error: 
argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]clang: error: argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]clang
: error: clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang
: : 
error: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
: error: clangclangerror: : error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]clang
clang: clangclangclang: : : : error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]error: 
clangclangclang: : error: or,-Wunused-command-line-argument]
clangargument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
: clangclangclang: argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]
: error: 
error: clang: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]: error: 
argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]error: 
argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang: error: error: clangargument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]argument unused during compilation: '-mavx512f' [-Werror,-Wunused-command-line-argument]
clang: : error: error: argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]argument unused during compilation: '-mavx512bw' [-Werror,-Wunused-command-line-argument]

clangclang: : error: error: argument unused during compilation: '-mavx512dq' [-Werror,-Wunused-command-line-argument]argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]

clang: error: argument unused during compilation: '-mavx512vl' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-masm=intel' [-Werror,-Wunused-command-line-argument]
error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunus
clang: error: error: argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang
: error: clangargument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]: 
error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512f' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512bw' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512dq' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512vl' [-Werror,-Wunused-command-line-argument]

clang: error: clangargument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]: error: 
argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
clang: clangerror: : error: argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]
argument unused during compilation: '-mavx512f' [-Werror,-Wunused-command-line-argument]clang: 
clang: error: error: argument unused during compilation: '-mavx512bw' [-Werror,-Wunused-command-line-argument]
argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]clang: error: argument unused during compilation: '-mavx512dq' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512vl' [-Werror,-Wunused-command-line-argument]

clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512f' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512bw' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512dq' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512vl' [-Werror,-Wunused-command-line-argument]
: error: argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
: clangerror: : error: argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]
argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]
clangclang: : error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
error: error: argument unused during compilation: '-mavx512vl' [-Werror,-Wunused-command-line-argument]
argument unused during compilation: '-mavx2' [-Werror,-Wunused-command-line-argument]
clang: error: clangargument unused during compilation: '-masm=intel' [-Werror,-Wunused-command-line-argument]: 
error: argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]clang
: error: argument unused during compilation: '-mavx512f' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512bw' make[2]: *** [CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseAvx512.cc.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: *** [CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseVectorInt8Avx512.cc.o] Error 1
make[2]: *** [CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseInt8Avx512.cc.o] Error 1
[-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512dq' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512vl' [-Werror,-Wunused-command-line-argument]
argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512f' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512bw' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512dq' [-Werror,-Wunused-command-line-argument]

clangclang: : error: error: argument unused during compilation: '-mavx512vl' [-Werror,-Wunused-command-line-argument]argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]

clang: error: argument unused during compilation: '-mavx512f' [-Werror,-Wunused-command-line-argument]

clang: error: argument unused during compilation: '-mavx512bw' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512dq' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512vl' [-Werror,-Wunused-command-line-argument]
argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]clang: 
error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512f' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512bw' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512dq' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512vl' [-Werror,-Wunused-command-line-argument]
ed-command-line-argument]
clang: error: argument unused during compilation: '-mavx512f' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512bw' [-Werror,-Wunused-command-line-argument]
clang: error: error: argument unused during compilation: '-mavx512dq' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mavx512vl' [-Werror,-Wunused-command-line-argument]
argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]
clang: error: clangargument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]: error: 
argument unused during compilation: '-mf16c' [-Werror,-Wunused-command-line-argument]
clang: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
clangclang: : error: error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]argument unused during compilation: '-masm=intel' [-Werror,-Wunused-command-line-argument]

error: argument unused during compilation: '-mfma' [-Werror,-Wunused-command-line-argument]
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/
make[2]: *** [CMakeFiles/fbgemm_avx512.dir/src/EmbeddingSpMDMAvx512.cc.o] Error 1
FbgemmSparseDenseInt8Avx2.cc.o] Error 1
make[2]: *** [CMakeFiles/fbgemm_avx512.dir/src/FbgemmBfloat16ConvertAvx512.cc.o] Error 1
make[2]: *** [CMakeFiles/fbgemm_avx512.dir/src/QuantUtilsAvx512.cc.o] Error 1
make[2]: *** [CMakeFiles/fbgemm_avx512.dir/src/UtilsAvx512.cc.o] Error 1
make[2]: *** [CMakeFiles/fbgemm_avx512.dir/src/FbgemmFP16UKernelsAvx512_256.cc.o] Error 1
make[2]: *** [CMakeFiles/fbgemm_avx512.dir/src/FbgemmFP16UKernelsAvx512.cc.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/FbgemmFP16UKernelsAvx2.cc.o] Error 1
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/FbgemmFloat16ConvertAvx2.cc.o] Error 1
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/EmbeddingSpMDMAvx2.cc.o] Error 1
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8Depthwise3DAvx2.cc.o] Error 1
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwisePerChannelQuantAvx2.cc.o] Error 1
make[2]: *** [CMakeFiles/fbgemm_avx512.dir/src/FbgemmFloat16ConvertAvx512.cc.o] Error 1
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/OptimizedKernelsAvx2.cc.o] Error 1
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/QuantUtilsAvx2.cc.o] Error 1
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/PackDepthwiseConvMatrixAvx2.cc.o] Error 1
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/UtilsAvx2.cc.o] Error 1
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/FbgemmSparseDenseAvx2.cc.o] Error 1
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwiseAvx2.cc.o] Error 1
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/FbgemmBfloat16ConvertAvx2.cc.o] Error 1
make[1]: *** [CMakeFiles/fbgemm_avx512.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
make[2]: *** [CMakeFiles/fbgemm_avx2.dir/src/spmmUtilsAvx2.cc.o] Error 1
make[1]: *** [CMakeFiles/fbgemm_avx2.dir/all] Error 2
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f cpuinfo/CMakeFiles/cpuinfo.dir/build.make cpuinfo/CMakeFiles/cpuinfo.dir/build
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f cpuinfo/CMakeFiles/cpuinfo_internals.dir/build.make cpuinfo/CMakeFiles/cpuinfo_internals.dir/build
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f googletest/googlemock/CMakeFiles/gmock.dir/build.make googletest/googlemock/CMakeFiles/gmock.dir/build
[ 20%] Built target asmjit
/Applications/Xcode.app/Contents/Developer/usr/bin/make  -f googletest/googletest/CMakeFiles/gtest_main.dir/build.make googletest/googletest/CMakeFiles/gtest_main.dir/build
make[2]: Nothing to be done for `cpuinfo/CMakeFiles/cpuinfo.dir/build'.
make[2]: Nothing to be done for `cpuinfo/CMakeFiles/cpuinfo_internals.dir/build'.
[ 23%] Built target cpuinfo
[ 24%] Built target cpuinfo_internals
make[2]: Nothing to be done for `googletest/googlemock/CMakeFiles/gmock.dir/build'.
make[2]: Nothing to be done for `googletest/googletest/CMakeFiles/gtest_main.dir/build'.
[ 25%] Built target gmock
[ 25%] Built target gtest_main
make[2]: Nothing to be done for `CMakeFiles/fbgemm_generic.dir/build'.
[ 34%] Built target fbgemm_generic
make: *** [all] Error 2

@xquyvu Sorry I didn't notice earlier that you are attempting to build FBGEMM on an M1 Mac. We are currently working on ARM support for FBGEMM, which is incomplete at the moment. This is being tracked in #2074

thank you for the update :)

Closing the issue as it is being tracked in #2074