samkumar commented on issue #37830: URL: https://github.com/apache/arrow/issues/37830#issuecomment-1731681061
In the build the resulted in the above output, I ran `cmake -DCMAKE_BUILD_TYPE=Release -DARROW_PARQUET=ON DARROW_WITH_SNAPPY=ON -DARROW_CXX_FLAGS_RELEASE="-mno-avx512f -mno-avx -gdwarf-4 -O0" ..`. Then I ran `make -j 8` to build `libarrow.so` and `libparquet.so`. In addition to seeing the error in `valgrind`, I can find the offending `vpbroadcastd` instructions if I inspect `libarrow.so` with `objdump -D`. I've also tried running `cmake -DCMAKE_BUILD_TYPE=Release -DARROW_PARQUET=ON -DARROW_WITH_SNAPPY=ON -DARROW_CXX_FLAGS_RELEASE="-mno-avx512f -mno-avx512pf -mno-avx512er -mno-avx512cd -gdwarf-4" ..` (without the `-O0` flag) and got similar errors in Valgrind and can see `vpbroadcastd` instructions in the SO file. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
