-
Notifications
You must be signed in to change notification settings - Fork 1.3k
core: Add semantic ROOT::EnableImplicitMT #18694
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
Conversation
Instead of specificy the number of core, the new overload can be specified to select a configuration type. Currently the following 2 configuration are supported: ROOT::EIMTConfig::kWholeMachine ROOT::EIMTConfig::kExistingTBBArena calling ``` ROOT::EnableImplicitMT(ROOT::EIMTConfig::kExistingTBBArena); ``` will attach to an existing TBB Arena instead of creating a new one. This fixes root-project#18301
Test Results 19 files 19 suites 3d 15h 9m 49s ⏱️ For more details on these failures, see this check. Results for commit 436a137. ♻️ This comment has been updated with latest results. |
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.
Some comments, also please don't forget to squash
Instead of specificy the number of core, the new overload can be specified to select a configuration type. Currently the following 2 configuration are supported:
ROOT::EIMTConfig::kWholeMachine
ROOT::EIMTConfig::kExistingTBBArena
calling
will attach to an existing TBB Arena instead of creating a new one.
This fixes #18301
This Pull request:
Changes or fixes:
Checklist:
This PR fixes #