-
-
Notifications
You must be signed in to change notification settings - Fork 86
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
allows you to benchmark against 1 chosen URL. #742
Conversation
aarch64 is once again failing with a constexpr issue... |
@@ -7,7 +7,11 @@ double url_examples_bytes{}; | |||
|
|||
std::vector<std::pair<std::string, std::string>> url_examples; | |||
|
|||
size_t init_data(const char *source) { | |||
enum { | |||
ALL_URLS = -1, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you also add a documentation on how to run the benchmarks?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@anonrig I pushed another commit which I expect might fix this build issue.
@anonrig Regarding documentation, have you seen this? Note that though it is not well documented, we can also filter benchmarks..
But that's Google Benchmark stuff. (And it was not previously documented.) Note that the command line processing is not great in these tools. It is kind of a hack, but we don't expect most users to care about these details. |
I see it is still failing the aarch64 ... :-/ |
@lemire it seems aarch64 is still failing. would you mind taking a look into it? |
This modifies slightly one of our benchmark program so that we can narrowly benchmark URLs one by one if needed.