Skip to content

Commit 4bc61e0

Browse files
authored
Merge pull request #1038 from stephenswat/perf/use_unsync_propagator
Switch from synchronized propagator to default
2 parents fb9fffd + 248c061 commit 4bc61e0

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

core/include/traccc/finding/details/combinatorial_kalman_filter.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,8 +374,7 @@ combinatorial_kalman_filter(
374374
}
375375

376376
// Propagate to the next surface
377-
propagator.propagate_sync(propagation,
378-
detray::tie(s0, s1, s2, s3, s4));
377+
propagator.propagate(propagation, detray::tie(s0, s1, s2, s3, s4));
379378

380379
// If a surface found, add the parameter for the next
381380
// step

device/common/include/traccc/finding/device/impl/propagate_to_next_surface.ipp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ TRACCC_HOST_DEVICE inline void propagate_to_next_surface(
9595
}
9696

9797
// Propagate to the next surface
98-
propagator.propagate_sync(propagation, detray::tie(s0, s2, s3, s4, s5));
98+
propagator.propagate(propagation, detray::tie(s0, s2, s3, s4, s5));
9999

100100
// If a surface found, add the parameter for the next step
101101
if (s5.success) {

0 commit comments

Comments
 (0)