Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

we should use std <bit> when C++20 is enabled #153

Closed
yosupo06 opened this issue Mar 5, 2023 · 1 comment · Fixed by #157
Closed

we should use std <bit> when C++20 is enabled #153

yosupo06 opened this issue Mar 5, 2023 · 1 comment · Fixed by #157

Comments

@yosupo06
Copy link
Collaborator

yosupo06 commented Mar 5, 2023

https://en.cppreference.com/w/cpp/header/bit C++20 provides bit manipulation functions as standard.

We should use these functions when C++20 is enabled

@yosupo06
Copy link
Collaborator Author

https://wandbox.org/permlink/tWmsqpe95cdZ5Gls
https://wandbox.org/permlink/RbNyFLtOEFZbWrFl

In wandbox & g++-12.1.0, __builtin_ctz is faster than std::bit::countr_zero when we don't specify -march=native (= without lzcnt). Probably this difference is due to the behavior of x=0 (__builtin_ctz:undefined vs countr_zero:bitwidth).

Because AtCoder don't plan to add -march=native option in new environment (ref: https://docs.google.com/spreadsheets/d/1HXyOXt5bKwhKWXruzUvfMFHQtBxfZQ0047W7VVObnXI/edit#gid=1305494725), we can't ignore this difference.

Options:

  • just ignore: This difference only affect the convolution function, and the effect should be small because we call builtin_ctz only O(N) times.
  • stop to use std::bit
  • ask AtCoder to add march=native

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant