10#include "boost/chrono/chrono.hpp"
11#include "boost/chrono/thread_clock.hpp"
17 base_class(
type, name, parent),
25 return StatusCode::SUCCESS;
31 return StatusCode::SUCCESS;
37 using clock_type = boost::chrono::thread_clock;
38 auto time_cast = [](
const auto & before,
const auto & after)
40 return boost::chrono::duration_cast<boost::chrono::microseconds>(after - before).count();
43 const auto start = clock_type::now();
45 const auto before_properties = clock_type::now();
49 const auto before_sort = clock_type::now();
53 const auto before_finalize = clock_type::now();
57 const auto end = clock_type::now();
62 time_cast(start, before_properties),
63 time_cast(before_properties, before_sort),
64 time_cast(before_sort, before_finalize),
65 time_cast(before_finalize, end)
70 return StatusCode::SUCCESS;
78 print_times(
"Preprocessing Calculating_ET Sorting_Clusters Finalizing_Clusters", 4);
80 return StatusCode::SUCCESS;
#define ATH_CHECK
Evaluate an expression and check for errors.
Gaudi::Property< bool > m_measureTimes
If true, times are recorded to the file given by m_timeFileName.
void print_times(const std::string &header, const size_t time_size) const
void record_times(const size_t event_num, const std::vector< size_t > ×) const
Holds CPU and GPU versions of the geometry and cell noise information, which are assumed to be consta...
Holds the mutable per-event information (clusters and cells) and provides utilities to convert betwee...
virtual StatusCode execute(const EventContext &ctx, const CaloRecGPU::ConstantDataHolder &constant_data, CaloRecGPU::EventDataHolder &event_data, void *temporary_buffer) const override
Gaudi::Property< float > m_clusterETThreshold
cut on the clusters.
Gaudi::Property< bool > m_cutClustersInAbsE
if set to true cluster cuts are on , if false on .
virtual StatusCode initialize_CUDA() override
Initialization that invokes CUDA functions.
ServiceHandle< IGPUKernelSizeOptimizerSvc > m_kernelSizeOptimizer
Handle to the CUDA kernel block and grid size optimization service.
GPUClusterSorter(const std::string &type, const std::string &name, const IInterface *parent)
virtual StatusCode finalize() override
virtual StatusCode initialize_non_CUDA() override
Initialization that does not invoke CUDA functions.
Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration.
void register_kernels(IGPUKernelSizeOptimizer &optimizer)
void sortClusters(CaloRecGPU::EventDataHolder &holder, const CaloRecGPU::ConstantDataHolder &instance_data, const IGPUKernelSizeOptimizer &optimizer, const bool synchronize=false, CaloRecGPU::CUDA_Helpers::CUDAStreamPtrHolder stream_to_use={})
void initialPropertiesCalculation(CaloRecGPU::EventDataHolder &holder, const CaloRecGPU::ConstantDataHolder &instance_data, const IGPUKernelSizeOptimizer &optimizer, const bool synchronize=false, const bool cut_in_absolute_ET=true, const float absolute_ET_threshold=-1, CaloRecGPU::CUDA_Helpers::CUDAStreamPtrHolder stream_to_use={})
void finalizeClusterAssignment(CaloRecGPU::EventDataHolder &holder, const CaloRecGPU::ConstantDataHolder &instance_data, const IGPUKernelSizeOptimizer &optimizer, const bool synchronize=false, CaloRecGPU::CUDA_Helpers::CUDAStreamPtrHolder stream_to_use={})