-
Notifications
You must be signed in to change notification settings - Fork 47
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
SacessOptimizer: Update worker settings #1202
SacessOptimizer: Update worker settings #1202
Conversation
dweindl
commented
Nov 20, 2023
- Most importantly fix default RefSet sizes (too big before)
- Add default settings for >10 workers
* Most importantly fix default RefSet sizes (too big before) * Add default settings for >10 workers
Codecov ReportAttention:
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## develop #1202 +/- ##
============================================
- Coverage 84.08% 63.43% -20.66%
============================================
Files 148 148
Lines 11775 11778 +3
============================================
- Hits 9901 7471 -2430
- Misses 1874 4307 +2433 ☔ View full report in Codecov by Sentry. |
min_dimrefset = 5 | ||
|
||
def dim_refset(x): | ||
return max(min_dimrefset, ceil((1 + sqrt(4 * dim * x)) / 2)) |
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.
Is this also based on the reference. Could not find the function MOD(ids...)
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.
Yes. The MOD
is replaced by cycle
at the end of this function.