-
Notifications
You must be signed in to change notification settings - Fork 168
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
feat!: Resurrect original AdaptiveGridTrackDensity
; Move new impl to SparseGridTrackDensity
#3340
feat!: Resurrect original AdaptiveGridTrackDensity
; Move new impl to SparseGridTrackDensity
#3340
Conversation
This is a bit more complicated than I anticipated. There have been a serious of changes to the
I think this has to be done manually since this also interfered with large scale vertexing refactor. Overall we should keep the improved comments and interfaces while the algorithm should stay as it was with its data structures. |
I would definitely keep this in |
Did we not measure this back then? I'd be surprised if that's what makes a difference in performance here. If it does after all, I'd want to attempt to use the compile time variables by dispatching in a compilation unit. |
I don't think we did a full comparison of the |
AdaptiveGridTrackDensity
vs SparseGridTrackDensity
AdaptiveGridTrackDensity
; Move new impl to SparseGridTrackDensity
📊: Physics performance monitoring for 03f70cephysmon summary
|
…iginal-adaptive-grid-track-density
dropping this for now as there are no apparent gains in merging this |
Quality Gate passedIssues Measures |
This is an attempt to resurrect the original
AdaptiveGridTrackDensity
to compare it's performance against the newSparseGridTrackDensity
.The main reason for this is that the algorithms diverged significantly and it would be good to capture this by different names. This also allows for CPU and physics performance comparisons which is currently looked at.
blocked by
nCleanVtx
toVertexPerformanceWriter
in Examples #3352