-
Notifications
You must be signed in to change notification settings - Fork 590
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
Compute filter scatter [VS-392] #7852
Conversation
Codecov Report
@@ Coverage Diff @@
## ah_var_store #7852 +/- ##
================================================
Coverage ? 86.293%
Complexity ? 35194
================================================
Files ? 2170
Lines ? 164876
Branches ? 17783
================================================
Hits ? 142277
Misses ? 16276
Partials ? 6323 |
@@ -70,6 +69,11 @@ workflow GvsCreateFilterSet { | |||
project_id = project_id | |||
} | |||
|
|||
Int scatter_count = if GetNumSamplesLoaded.num_samples < 100 then 20 |
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.
Int scatter_count = if GetNumSamplesLoaded.num_samples < 100 then 20 | |
Int scatter_count = if GetNumSamplesLoaded.num_samples < 100 then 20 | |
else if GetNumSamplesLoaded.num_samples < 1000 then 100 | |
else if GetNumSamplesLoaded.num_samples < 10000 then 200 | |
else if GetNumSamplesLoaded.num_samples < 100000 then 500 | |
else 1000``` |
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.
Might be a little cleaner?
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.
I went with the formatting that the Winstanley plugin recommended, although I like the way your suggestion looks,.
Closes https://broadworkbench.atlassian.net/browse/VS-392