-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Integrating Relative Error Handling in convex_hull, count_string and parallel_preorder #1671
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
base: master
Are you sure you want to change the base?
Conversation
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.
The examples_clang-format
check fails because of the following 3 changes:
static constexpr std::size_t hash_multiplier = | ||
(std::size_t)((sizeof(std::size_t) == sizeof(unsigned)) ? 2654435769U | ||
: 11400714819323198485ULL); |
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.
Revert.
Index end; | ||
edge(Index _p1, Index _p2) : start(_p1), end(_p2){}; | ||
edge(Index _p1, Index _p2) : start(_p1), end(_p2) {}; |
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.
Revert.
if (!util::silent) { | ||
std::cout << "Starting TBB-buffered version of QUICK HULL algorithm" | ||
<< "\n"; | ||
std::cout << "Starting TBB-buffered version of QUICK HULL algorithm" << "\n"; | ||
} |
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.
Revert.
if (numberOfIterations <= 0) { | ||
std::cout << "Setting the number of iterations = " << numberOfIterations << " default\n"; |
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.
The user-specified non-positive value is used here instead of the default.
Description
Integrated utility class measurement for relative error analysis in mentioned examples.
Default values of n-of-iterations set to best scenarios found in initial analysis.
Fixes # - #1653
Co-authored-by: Hussain, Shaik (shaik.hussain@intel.com)
Signed-off-by: Hussain, Shaik (shaik.hussain@intel.com)
Signed-off-by: Verma, Rahul (rahul3.verma@intel.com)
Type of change
Choose one or multiple, leave empty if none of the other choices apply
Add a respective label(s) to PR if you have permissions
Tests
Documentation
Breaks backward compatibility
Notify the following users
List users with
@shaikhus12122864
to send notificationsOther information