You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to run the benchmarks like below but failed.
$ cd benchmarks
$ CXX=$(which g++) ./run.sh hypot2.cpp
The compiler gives a lot of errors. One of those complains that
bench.h:252:33: error: ‘_S_width’ is not a member of ‘std::experimental::parallelism_v2::_VectorTraitsImpl<__vector(4) float, void>’
252 | for (int i = 0; i < VT::_S_width; ++i) { \
| ^~~~~~~~
So I searched through the code using ripgrep but found nothing in the lib.
$ cd std-simd
$ rg _S_widthbenchmarks/bench.h38: return std::experimental::_VectorTraits<T>::_S_width;252: for (int i = 0; i < VT::_S_width; ++i) { \
I guess the benchmarks have already been broken and kept unmaintained. If I am wrong, then how to run those benchmarks?
The text was updated successfully, but these errors were encountered:
I tried to run the benchmarks like below but failed.
The compiler gives a lot of errors. One of those complains that
So I searched through the code using ripgrep but found nothing in the lib.
I guess the benchmarks have already been broken and kept unmaintained. If I am wrong, then how to run those benchmarks?
The text was updated successfully, but these errors were encountered: