Skip to content
Snippets Groups Projects
Commit c1401526 authored by Adam Edward Barton's avatar Adam Edward Barton
Browse files

Revert "Merge branch 'VecMem1.13-24.0-20250213' into '24.0'"

This reverts commit f786e8d4, reversing
changes made to 27af9504.
parent b676f8a3
No related branches found
No related tags found
10 merge requests!79199New HI test for data23/24,!79094Draft: Further menu changes for egamma trigger 2025 (ATR-31076),!79090Draft: Further menu changes for egamma trigger 2025 https://its.cern.ch/jira/browse/ATR-31076,!78241Draft: FPGATrackSim: GenScan code refactor,!78236Draft: Switching Streams https://its.cern.ch/jira/browse/ATR-27417,!78056AFP monitoring: new synchronization and cleaning,!78041AFP monitoring: new synchronization and cleaning,!77990Updating TRT chip masks for L1TRT trigger simulation - ATR-28372,!778522025-02-15: merge of 24.0 into main,!76343Draft: MooTrackBuilder: Recalibrate NSW hits in refine method
//
// Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
// Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
//
// Local include(s).
......@@ -130,7 +130,7 @@ StatusCode TrackParticleCalibratorExampleAlg::execute(
nTracks * sizeof(float));
// Copy the input buffer to the device.
copy(inputHostBuffer, inputDeviceBuffer)->wait();
copy(inputHostBuffer, inputDeviceBuffer);
// Construct output buffer(s).
TrackParticleContainer::buffer outputDeviceBuffer(input->size(), deviceMR);
......@@ -148,7 +148,7 @@ StatusCode TrackParticleCalibratorExampleAlg::execute(
CUDA_ERROR_CHECK(cudaDeviceSynchronize());
// Get the output back to the host.
copy(outputDeviceBuffer, outputHostBuffer)->wait();
copy(outputDeviceBuffer, outputHostBuffer);
// Construct the output container.
auto outputAux = std::make_unique<xAOD::AuxContainerBase>();
......
......@@ -38,7 +38,11 @@ class TrackParticleCalibratorExampleAlg : public AthReentrantAlgorithm {
virtual StatusCode initialize() override;
/// Function executing the algorithm
virtual StatusCode execute(const EventContext& ctx) const override;
virtual StatusCode execute(const EventContext& ctx) const override
#if (defined(__GNUC__) || defined(__clang__))
__attribute__((no_sanitize("vptr")))
#endif
;
/// @}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment