ATLAS Offline Software
Loading...
Searching...
No Matches
DataPreparationPipeline Class Reference

Class for the data preparation pipeline. More...

#include <DataPreparationPipeline.h>

Inheritance diagram for DataPreparationPipeline:
Collaboration diagram for DataPreparationPipeline:

Public Member Functions

StatusCode initialize () override final
 Detect the OpenCL devices and prepare OpenCL context.
StatusCode execute (const EventContext &ctx) const override final
 Should be overriden by derived classes to perform meaningful work.
StatusCode setupBuffers ()
StatusCode setupKernelArgs ()
StatusCode loadProgram (const std::string &xclbin)
 Find the xclbin file and load it into the OpenCL program object.
StatusCode precheck (const std::vector< Gaudi::Property< std::string > > &inputs) const
 Check if the the desired Gaudi properties are set.
virtual StatusCode sysInitialize () override
 Override sysInitialize.
virtual bool isClonable () const override
 Specify if the algorithm is clonable.
virtual unsigned int cardinality () const override
 Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant.
virtual StatusCode sysExecute (const EventContext &ctx) override
 Execute an algorithm.
virtual const DataObjIDColl & extraOutputDeps () const override
 Return the list of extra output dependencies.
virtual bool filterPassed (const EventContext &ctx) const
virtual void setFilterPassed (bool state, const EventContext &ctx) const
ServiceHandle< StoreGateSvc > & evtStore ()
 The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.
const ServiceHandle< StoreGateSvc > & detStore () const
 The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.
virtual StatusCode sysStart () override
 Handle START transition.
virtual std::vector< Gaudi::DataHandle * > inputHandles () const override
 Return this algorithm's input handles.
virtual std::vector< Gaudi::DataHandle * > outputHandles () const override
 Return this algorithm's output handles.
Gaudi::Details::PropertyBase & declareProperty (Gaudi::Property< T, V, H > &t)
void updateVHKA (Gaudi::Details::PropertyBase &)
MsgStream & msg () const
bool msgLvl (const MSG::Level lvl) const

Protected Member Functions

void renounceArray (SG::VarHandleKeyArray &handlesArray)
 remove all handles from I/O resolution
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce (T &h)
void extraDeps_update_handler (Gaudi::Details::PropertyBase &ExtraDeps)
 Add StoreName to extra input/output deps as needed.

Protected Attributes

cl::Device m_accelerator
 Device object for the accelerator card.
cl::Context m_context
 Context object for the application.
cl::Program m_program
 Program object containing the kernel.
Gaudi::Property< std::string > m_deviceBDF {this, "bdfID", "", "BDF ID of the accelerator card"}
 BDF ID of the accelerator card.
Gaudi::Property< bool > m_doEmulation {this, "doEmulation", false, "If software or hardware emulation is being used for debugging"}

Private Types

typedef ServiceHandle< StoreGateSvcStoreGateSvc_t

Private Member Functions

Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

cl::Kernel m_pixelClusteringKernel
 Kernel for pixel clustering.
cl::Kernel m_spacepointKernel
 Kernel for spacepoint.
cl::Buffer m_pxlClusteringInBuff
 Buffer for pixel clustering input.
cl::Buffer m_pxlClusteringOutBuff
 Buffer for pixel clustering output.
cl::Buffer m_spacepointInBuff
 Buffer for spacepoint input.
cl::Buffer m_spacepointOutBuff
 Buffer for spacepoint output.
Gaudi::Property< std::string > m_xclbin
 Path and name of the xclbin file.
Gaudi::Property< std::string > m_passThroughKernelName
 Pass through kernel name.
Gaudi::Property< std::string > m_pixelClusteringKernelName
 Pixle clustering kernel name.
Gaudi::Property< std::string > m_spacepointKernelName
 Spacepoint kernel name.
Gaudi::Property< std::string > m_pixelClusterTVPath
 Pixel cluster test vector.
Gaudi::Property< std::string > m_pixelClusterRefTVPath
 Pixel cluster reference test vector.
Gaudi::Property< std::string > m_spacepointTVPath
 Spacepoint test vector.
Gaudi::Property< std::string > m_spacepointRefTVPath
 Spacepoint reference test vector.
Gaudi::Property< bool > m_usePassThrough
 Use the pass through tool instead of data prep pipeline.
Gaudi::Property< bool > m_useTV {this, "UseTV", false, "Use test vector"}
 Use test vector.
ToolHandle< xAODClusterMakerm_xAODClusterMaker
 Tool handle for xAODClusterMaker.
ToolHandle< xAODSpacePointMakerm_xAODSpacePointMaker
 Tool handle for xAODSpacePointMaker.
ToolHandle< PassThroughToolm_passThroughTool
 Tool handle for PassThroughTool.
ToolHandle< TestVectorToolm_testVectorTool
 Tool handle for TestVectorTool.
DataObjIDColl m_extendedExtraObjects
 Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.
StoreGateSvc_t m_evtStore
 Pointer to StoreGate (event store by default)
StoreGateSvc_t m_detStore
 Pointer to StoreGate (detector store by default)
std::vector< SG::VarHandleKeyArray * > m_vhka
bool m_varHandleArraysDeclared

Detailed Description

Class for the data preparation pipeline.

Author
zhaoy.nosp@m.uan..nosp@m.cui@c.nosp@m.ern..nosp@m.ch
yuan-.nosp@m.tang.nosp@m..chou.nosp@m.@cer.nosp@m.n.ch
Date
Feb. 18, 2024

This is the class for the data preparation pipeline.

The output of this pipeline are the xAOD::StripCluster(Container) and xAOD::PixelCluster(Container). These containers are to be used in other CPU-based algorithms.

Definition at line 36 of file DataPreparationPipeline.h.

Member Typedef Documentation

◆ StoreGateSvc_t

typedef ServiceHandle<StoreGateSvc> AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::StoreGateSvc_t
privateinherited

Definition at line 388 of file AthCommonDataStore.h.

Member Function Documentation

◆ cardinality()

unsigned int AthCommonReentrantAlgorithm< Gaudi::Algorithm >::cardinality ( ) const
overridevirtualinherited

Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant.

Override this to return 0 for reentrant algorithms.

Definition at line 75 of file AthCommonReentrantAlgorithm.cxx.

64{
65 return 0;
66}

◆ declareGaudiProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::declareGaudiProperty ( Gaudi::Property< T, V, H > & hndl,
const SG::VarHandleKeyType &  )
inlineprivateinherited

specialization for handling Gaudi::Property<SG::VarHandleKey>

Definition at line 156 of file AthCommonDataStore.h.

158 {
160 hndl.value(),
161 hndl.documentation());
162
163 }
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)

◆ declareProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::declareProperty ( Gaudi::Property< T, V, H > & t)
inlineinherited

Definition at line 145 of file AthCommonDataStore.h.

145 {
146 typedef typename SG::HandleClassifier<T>::type htype;
148 }
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>

◆ detStore()

const ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::detStore ( ) const
inlineinherited

The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 95 of file AthCommonDataStore.h.

◆ evtStore()

ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::evtStore ( )
inlineinherited

The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 85 of file AthCommonDataStore.h.

◆ execute()

StatusCode DataPreparationPipeline::execute ( const EventContext & ctx) const
finaloverridevirtual

Should be overriden by derived classes to perform meaningful work.

Reimplemented from IntegrationBase.

Definition at line 67 of file DataPreparationPipeline.cxx.

68{
70 {
71 EFTrackingTransient::StripClusterAuxInput scAux;
72 EFTrackingTransient::PixelClusterAuxInput pxAux;
73
74 // Create separate structures for pixel and strip space points
75 EFTrackingTransient::SpacePointAuxInput pixelSpAux;
76 EFTrackingTransient::SpacePointAuxInput stripSpAux;
77
78 std::unique_ptr<EFTrackingTransient::Metadata> metadata =
79 std::make_unique<EFTrackingTransient::Metadata>();
80
81 // Pass both aux structures to the PassThroughTool
82 ATH_CHECK(m_passThroughTool->runPassThrough(scAux, pxAux, stripSpAux, pixelSpAux, metadata.get(), ctx));
83 ATH_CHECK(m_xAODClusterMaker->makeStripClusterContainer(scAux, metadata.get(), ctx));
84 ATH_CHECK(m_xAODClusterMaker->makePixelClusterContainer(pxAux, metadata.get(), ctx));
85
86 ATH_CHECK(m_xAODSpacePointMaker->makeStripSpacePointContainer(stripSpAux, metadata.get(), ctx));
87 ATH_CHECK(m_xAODSpacePointMaker->makePixelSpacePointContainer(pixelSpAux, metadata.get(), ctx));
88
89 return StatusCode::SUCCESS;
90 }
91
92 // HW kernels to be added here in the future
93 ATH_MSG_INFO("Running the FPGA Data Preparation Pipeline");
94
95 // Order of execution
96 // 1. Pixel/strip clustering
97 // 2. Pixel/strip L2G
98 // 3. Pixel/strip Spacepoint
99
100 // Are we using TV or RDO?
101 if (m_useTV)
102 {
103 // Make queue of commands
104 cl::CommandQueue acc_queue(m_context, m_accelerator);
105
106 ATH_MSG_INFO("Using test vectors");
107 EFTrackingFPGAIntegration::TVHolder pixelTV("PixelClustering");
108 ATH_CHECK(m_testVectorTool->prepareTV(m_pixelClusterTVPath, pixelTV.inputTV));
109 ATH_CHECK(m_testVectorTool->prepareTV(m_pixelClusterRefTVPath, pixelTV.refTV));
110
111 std::vector<uint64_t> fpgaOutput(pixelTV.inputTV.size() * 2, 0);
112
113 ATH_MSG_INFO("Running the pixel clustering kernel");
114 acc_queue.enqueueWriteBuffer(m_pxlClusteringInBuff, CL_TRUE, 0, sizeof(uint64_t) * pixelTV.inputTV.size(), pixelTV.inputTV.data(), NULL, NULL);
115 acc_queue.enqueueTask(m_pixelClusteringKernel);
116 acc_queue.finish();
117
118 // The current implementation of the kernel Read/Write the same buffer
119 // So the line below reads the inbuff insatead of outbuff
120 acc_queue.enqueueReadBuffer(m_pxlClusteringInBuff, CL_TRUE, 0, sizeof(uint64_t) * fpgaOutput.size(), fpgaOutput.data(), NULL, NULL);
121
122 // compare the output with the reference
123 ATH_CHECK(m_testVectorTool->compare(pixelTV, fpgaOutput));
124
125 // do the same for spacepoint
126 EFTrackingFPGAIntegration::TVHolder spacepointTV("Spacepoint");
127 ATH_CHECK(m_testVectorTool->prepareTV(m_spacepointTVPath, spacepointTV.inputTV));
128 ATH_CHECK(m_testVectorTool->prepareTV(m_spacepointRefTVPath, spacepointTV.refTV));
129
130 // reset the output vector
131 fpgaOutput = std::vector<uint64_t>(spacepointTV.inputTV.size() * 2, 0);
132
133 ATH_MSG_INFO("Running the spacepoint kernel");
134 acc_queue.enqueueWriteBuffer(m_spacepointInBuff, CL_TRUE, 0, sizeof(uint64_t) * spacepointTV.inputTV.size(), spacepointTV.inputTV.data(), NULL, NULL);
135 acc_queue.enqueueTask(m_spacepointKernel);
136 acc_queue.finish();
137
138 acc_queue.enqueueReadBuffer(m_spacepointInBuff, CL_TRUE, 0, sizeof(uint64_t) * fpgaOutput.size(), fpgaOutput.data(), NULL, NULL);
139
140 // compare the output with the reference
141 ATH_CHECK(m_testVectorTool->compare(spacepointTV, fpgaOutput));
142 }
143 else
144 {
145 // Use FPGADataFormatTool to prepare input
146 ATH_MSG_INFO("Using RDOs for FPGA is not ready yet");
147 }
148
149 return StatusCode::SUCCESS;
150}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_INFO(x)
cl::Buffer m_pxlClusteringInBuff
Buffer for pixel clustering input.
cl::Kernel m_spacepointKernel
Kernel for spacepoint.
Gaudi::Property< std::string > m_spacepointTVPath
Spacepoint test vector.
ToolHandle< TestVectorTool > m_testVectorTool
Tool handle for TestVectorTool.
ToolHandle< xAODClusterMaker > m_xAODClusterMaker
Tool handle for xAODClusterMaker.
Gaudi::Property< bool > m_useTV
Use test vector.
Gaudi::Property< std::string > m_spacepointRefTVPath
Spacepoint reference test vector.
ToolHandle< PassThroughTool > m_passThroughTool
Tool handle for PassThroughTool.
Gaudi::Property< std::string > m_pixelClusterRefTVPath
Pixel cluster reference test vector.
cl::Buffer m_spacepointInBuff
Buffer for spacepoint input.
ToolHandle< xAODSpacePointMaker > m_xAODSpacePointMaker
Tool handle for xAODSpacePointMaker.
Gaudi::Property< std::string > m_pixelClusterTVPath
Pixel cluster test vector.
Gaudi::Property< bool > m_usePassThrough
Use the pass through tool instead of data prep pipeline.
cl::Kernel m_pixelClusteringKernel
Kernel for pixel clustering.
cl::Context m_context
Context object for the application.
cl::Device m_accelerator
Device object for the accelerator card.

◆ extraDeps_update_handler()

void AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::extraDeps_update_handler ( Gaudi::Details::PropertyBase & ExtraDeps)
protectedinherited

Add StoreName to extra input/output deps as needed.

use the logic of the VarHandleKey to parse the DataObjID keys supplied via the ExtraInputs and ExtraOuputs Properties to add the StoreName if it's not explicitly given

◆ extraOutputDeps()

const DataObjIDColl & AthCommonReentrantAlgorithm< Gaudi::Algorithm >::extraOutputDeps ( ) const
overridevirtualinherited

Return the list of extra output dependencies.

This list is extended to include symlinks implied by inheritance relations.

Definition at line 94 of file AthCommonReentrantAlgorithm.cxx.

90{
91 // If we didn't find any symlinks to add, just return the collection
92 // from the base class. Otherwise, return the extended collection.
93 if (!m_extendedExtraObjects.empty()) {
95 }
97}
An algorithm that can be simultaneously executed in multiple threads.

◆ filterPassed()

virtual bool AthCommonReentrantAlgorithm< Gaudi::Algorithm >::filterPassed ( const EventContext & ctx) const
inlinevirtualinherited

Definition at line 96 of file AthCommonReentrantAlgorithm.h.

96 {
97 return execState( ctx ).filterPassed();
98 }
virtual bool filterPassed(const EventContext &ctx) const

◆ initialize()

StatusCode DataPreparationPipeline::initialize ( )
finaloverridevirtual

Detect the OpenCL devices and prepare OpenCL context.

This should always be called by derived classes when running on the FPGA accelerator.

Reimplemented from IntegrationBase.

Definition at line 17 of file DataPreparationPipeline.cxx.

18{
19 // Check if we are using the pass through tool
20 // If yes, check if we are running in software mode. sw mode doesn't require an accelerator
22 {
23 ATH_CHECK(m_passThroughTool.retrieve());
24 if (m_passThroughTool->runSW())
25 {
26 ATH_MSG_INFO("Running software pass through");
27 }
28 else
29 {
30 ATH_MSG_INFO("Running hardware pass through");
34 }
35 }
36 // We are doing the Data Preparation Pipeline on FPGA, so we need to setup hardware
37 else
38 {
39 ATH_MSG_INFO("Running the DataPrep pipeline on the FPGA accelerator");
43
44 // Kernel objects shouldn't change so they can be initialized here
46 m_spacepointKernel = cl::Kernel(m_program, m_spacepointKernelName.value().data());
47
50
51 if (m_useTV)
52 {
57 ATH_CHECK(m_testVectorTool.retrieve());
58 }
59 }
60
61 ATH_CHECK(m_xAODClusterMaker.retrieve());
63
64 return StatusCode::SUCCESS;
65}
Gaudi::Property< std::string > m_spacepointKernelName
Spacepoint kernel name.
Gaudi::Property< std::string > m_xclbin
Path and name of the xclbin file.
Gaudi::Property< std::string > m_pixelClusteringKernelName
Pixle clustering kernel name.
Gaudi::Property< std::string > m_passThroughKernelName
Pass through kernel name.
StatusCode loadProgram(const std::string &xclbin)
Find the xclbin file and load it into the OpenCL program object.
cl::Program m_program
Program object containing the kernel.
virtual StatusCode initialize() override
Detect the OpenCL devices and prepare OpenCL context.
StatusCode precheck(const std::vector< Gaudi::Property< std::string > > &inputs) const
Check if the the desired Gaudi properties are set.

◆ inputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::inputHandles ( ) const
overridevirtualinherited

Return this algorithm's input handles.

We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.

◆ isClonable()

◆ loadProgram()

StatusCode IntegrationBase::loadProgram ( const std::string & xclbin)
inherited

Find the xclbin file and load it into the OpenCL program object.

Definition at line 115 of file IntegrationBase.cxx.

116{
117 // Open binary object in binary mode
118 std::ifstream bin_file(xclbin, std::ios_base::binary);
119 if (!bin_file)
120 {
121 ATH_MSG_ERROR("Couldn't find the xclbin file: " << xclbin);
122 return StatusCode::FAILURE;
123 }
124 // Get the size of the binary file
125 bin_file.seekg(0, bin_file.end);
126 unsigned bin_size = bin_file.tellg();
127 // Reset the reference point back to the beginning
128 bin_file.seekg(0, bin_file.beg);
129 // Create a new pointer for the binary buffer and get the set a pointer to the binary buffer
130 std::vector<char> buf(bin_size);
131 bin_file.read(buf.data(), bin_size);
132
133 // Create binary object and program object
134 cl_int err = 0;
135 std::vector<cl_int> binaryStatus;
136 cl::Program::Binaries bins{{buf.data(), bin_size}};
137 m_program = cl::Program(m_context, {m_accelerator}, bins, &binaryStatus, &err);
138
139 bin_file.close();
140
141 if (err == CL_SUCCESS && binaryStatus.at(0) == CL_SUCCESS)
142 {
143 ATH_MSG_INFO("Successfully loaded xclbin file into " << m_accelerator.getInfo<CL_DEVICE_NAME>());
144 }
145 else
146 {
147 ATH_MSG_ERROR("Error loading xclbin file (" << xclbin << ") into " << m_accelerator.getInfo<CL_DEVICE_NAME>() <<". Error code: " << err);
148 return StatusCode::FAILURE;
149 }
150
151 return StatusCode::SUCCESS;
152}
#define ATH_MSG_ERROR(x)
static const std::vector< std::string > bins

◆ msg()

MsgStream & AthCommonMsg< Gaudi::Algorithm >::msg ( ) const
inlineinherited

Definition at line 24 of file AthCommonMsg.h.

24 {
25 return this->msgStream();
26 }

◆ msgLvl()

bool AthCommonMsg< Gaudi::Algorithm >::msgLvl ( const MSG::Level lvl) const
inlineinherited

Definition at line 30 of file AthCommonMsg.h.

30 {
31 return this->msgLevel(lvl);
32 }

◆ outputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::outputHandles ( ) const
overridevirtualinherited

Return this algorithm's output handles.

We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.

◆ precheck()

StatusCode IntegrationBase::precheck ( const std::vector< Gaudi::Property< std::string > > & inputs) const
inherited

Check if the the desired Gaudi properties are set.

Definition at line 154 of file IntegrationBase.cxx.

155{
156 for(const auto &item : inputs)
157 {
158 if(item.empty())
159 {
160 ATH_MSG_FATAL(item.documentation()<<" is empty. Please set it to a valid value");
161 return StatusCode::FAILURE;
162 }
163 }
164
165 // Always check if bdf is set
166 if (m_deviceBDF.empty())
167 {
168 ATH_MSG_WARNING("Device BDF is not set. Using the first found accelerator card. Set property 'bdfID' to specify the BDF of the device.");
169 }
170
171 return StatusCode::SUCCESS;
172}
#define ATH_MSG_FATAL(x)
#define ATH_MSG_WARNING(x)
Gaudi::Property< std::string > m_deviceBDF
BDF ID of the accelerator card.

◆ renounce()

std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::renounce ( T & h)
inlineprotectedinherited

Definition at line 380 of file AthCommonDataStore.h.

381 {
382 h.renounce();
384 }
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce(T &h)

◆ renounceArray()

void AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::renounceArray ( SG::VarHandleKeyArray & handlesArray)
inlineprotectedinherited

remove all handles from I/O resolution

Definition at line 364 of file AthCommonDataStore.h.

364 {
366 }

◆ setFilterPassed()

virtual void AthCommonReentrantAlgorithm< Gaudi::Algorithm >::setFilterPassed ( bool state,
const EventContext & ctx ) const
inlinevirtualinherited

Definition at line 100 of file AthCommonReentrantAlgorithm.h.

100 {
102 }
virtual void setFilterPassed(bool state, const EventContext &ctx) const

◆ setupBuffers()

StatusCode DataPreparationPipeline::setupBuffers ( )

Definition at line 152 of file DataPreparationPipeline.cxx.

153{
154 // Allocate buffers on accelerator
155 cl_int err = 0;
156
157 // Set the size of the buffer to be 100000, should be further discussed!
158 unsigned int size = 100000;
159 m_pxlClusteringInBuff = cl::Buffer(m_context, CL_MEM_READ_ONLY, sizeof(uint64_t) * size, NULL, &err);
160 if (err != CL_SUCCESS)
161 {
162 ATH_MSG_ERROR("Failed to allocate intput buffer for pixel clustering");
163 return StatusCode::FAILURE;
164 }
165
166 m_pxlClusteringOutBuff = cl::Buffer(m_context, CL_MEM_READ_WRITE, sizeof(uint64_t) * size, NULL, &err);
167 if (err != CL_SUCCESS)
168 {
169 ATH_MSG_ERROR("Failed to allocate output buffer for pixel clustering");
170 return StatusCode::FAILURE;
171 }
172
173 m_spacepointInBuff = cl::Buffer(m_context, CL_MEM_READ_ONLY, sizeof(uint64_t) * size, NULL, &err);
174 if (err != CL_SUCCESS)
175 {
176 ATH_MSG_ERROR("Failed to allocate input buffer for spacepoint");
177 return StatusCode::FAILURE;
178 }
179
180 m_spacepointOutBuff = cl::Buffer(m_context, CL_MEM_READ_WRITE, sizeof(uint64_t) * size, NULL, &err);
181 if (err != CL_SUCCESS)
182 {
183 ATH_MSG_ERROR("Failed to allocate output buffer for spacepoint");
184 return StatusCode::FAILURE;
185 }
186
187 return StatusCode::SUCCESS;
188}
cl::Buffer m_spacepointOutBuff
Buffer for spacepoint output.
cl::Buffer m_pxlClusteringOutBuff
Buffer for pixel clustering output.

◆ setupKernelArgs()

StatusCode DataPreparationPipeline::setupKernelArgs ( )

Definition at line 190 of file DataPreparationPipeline.cxx.

191{
192 // Prepare kernel
193 m_pixelClusteringKernel.setArg<uint>(0, 0);
194 m_pixelClusteringKernel.setArg<cl::Buffer>(1, m_pxlClusteringInBuff);
195 m_pixelClusteringKernel.setArg<cl::Buffer>(2, m_pxlClusteringOutBuff);
196
197 m_spacepointKernel.setArg<cl::Buffer>(0, m_spacepointInBuff);
198 m_spacepointKernel.setArg<cl::Buffer>(1, m_spacepointOutBuff);
199 // Hardcoded the size for now, shouldn't need the size eventually
200 m_spacepointKernel.setArg<uint>(2, 33);
201
202 return StatusCode::SUCCESS;
203}
unsigned int uint

◆ sysExecute()

StatusCode AthCommonReentrantAlgorithm< Gaudi::Algorithm >::sysExecute ( const EventContext & ctx)
overridevirtualinherited

Execute an algorithm.

We override this in order to work around an issue with the Algorithm base class storing the event context in a member variable that can cause crashes in MT jobs.

Definition at line 85 of file AthCommonReentrantAlgorithm.cxx.

77{
78 return BaseAlg::sysExecute (ctx);
79}

◆ sysInitialize()

StatusCode AthCommonReentrantAlgorithm< Gaudi::Algorithm >::sysInitialize ( )
overridevirtualinherited

Override sysInitialize.

Override sysInitialize from the base class.

Loop through all output handles, and if they're WriteCondHandles, automatically register them and this Algorithm with the CondSvc

Scan through all outputHandles, and if they're WriteCondHandles, register them with the CondSvc

Reimplemented from AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >.

Reimplemented in HypoBase, and InputMakerBase.

Definition at line 61 of file AthCommonReentrantAlgorithm.cxx.

107 {
109
110 if (sc.isFailure()) {
111 return sc;
112 }
113
114 ServiceHandle<ICondSvc> cs("CondSvc",name());
115 for (auto h : outputHandles()) {
116 if (h->isCondition() && h->mode() == Gaudi::DataHandle::Writer) {
117 // do this inside the loop so we don't create the CondSvc until needed
118 if ( cs.retrieve().isFailure() ) {
119 ATH_MSG_WARNING("no CondSvc found: won't autoreg WriteCondHandles");
120 return StatusCode::SUCCESS;
121 }
122 if (cs->regHandle(this,*h).isFailure()) {
124 ATH_MSG_ERROR("unable to register WriteCondHandle " << h->fullKey()
125 << " with CondSvc");
126 }
127 }
128 }
129 return sc;
130}
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override

◆ sysStart()

virtual StatusCode AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::sysStart ( )
overridevirtualinherited

Handle START transition.

We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.

◆ updateVHKA()

void AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::updateVHKA ( Gaudi::Details::PropertyBase & )
inlineinherited

Definition at line 308 of file AthCommonDataStore.h.

308 {
309 // debug() << "updateVHKA for property " << p.name() << " " << p.toString()
310 // << " size: " << m_vhka.size() << endmsg;
311 for (auto &a : m_vhka) {
313 for (auto k : keys) {
314 k->setOwner(this);
315 }
316 }
317 }

Member Data Documentation

◆ m_accelerator

cl::Device IntegrationBase::m_accelerator
protectedinherited

Device object for the accelerator card.

Definition at line 66 of file IntegrationBase.h.

◆ m_context

cl::Context IntegrationBase::m_context
protectedinherited

Context object for the application.

Definition at line 67 of file IntegrationBase.h.

◆ m_detStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_detStore
privateinherited

Pointer to StoreGate (detector store by default)

Definition at line 393 of file AthCommonDataStore.h.

◆ m_deviceBDF

Gaudi::Property<std::string> IntegrationBase::m_deviceBDF {this, "bdfID", "", "BDF ID of the accelerator card"}
protectedinherited

BDF ID of the accelerator card.

Definition at line 69 of file IntegrationBase.h.

69{this, "bdfID", "", "BDF ID of the accelerator card"};

◆ m_doEmulation

Gaudi::Property<bool> IntegrationBase::m_doEmulation {this, "doEmulation", false, "If software or hardware emulation is being used for debugging"}
protectedinherited

Definition at line 70 of file IntegrationBase.h.

70{this, "doEmulation", false, "If software or hardware emulation is being used for debugging"};

◆ m_evtStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_evtStore
privateinherited

Pointer to StoreGate (event store by default)

Definition at line 390 of file AthCommonDataStore.h.

◆ m_extendedExtraObjects

DataObjIDColl AthCommonReentrantAlgorithm< Gaudi::Algorithm >::m_extendedExtraObjects
privateinherited

Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.

Empty if no symlinks were found.

Definition at line 114 of file AthCommonReentrantAlgorithm.h.

◆ m_passThroughKernelName

Gaudi::Property<std::string> DataPreparationPipeline::m_passThroughKernelName
private
Initial value:
{this,
"PassThroughKernelName", "",
"Pass through kernel name"}

Pass through kernel name.

Definition at line 61 of file DataPreparationPipeline.h.

61 {this,
62 "PassThroughKernelName", "",
63 "Pass through kernel name"};

◆ m_passThroughTool

ToolHandle<PassThroughTool> DataPreparationPipeline::m_passThroughTool
private
Initial value:
{
this, "PassThroughTool", "PassThroughTool",
"The pass through tool"}

Tool handle for PassThroughTool.

Definition at line 97 of file DataPreparationPipeline.h.

97 {
98 this, "PassThroughTool", "PassThroughTool",
99 "The pass through tool"};

◆ m_pixelClusteringKernel

cl::Kernel DataPreparationPipeline::m_pixelClusteringKernel
private

Kernel for pixel clustering.

Definition at line 48 of file DataPreparationPipeline.h.

◆ m_pixelClusteringKernelName

Gaudi::Property<std::string> DataPreparationPipeline::m_pixelClusteringKernelName
private
Initial value:
{this,
"PixelClusteringKernelName", "",
"Pixel Clustering kernel name"}

Pixle clustering kernel name.

Definition at line 64 of file DataPreparationPipeline.h.

64 {this,
65 "PixelClusteringKernelName", "",
66 "Pixel Clustering kernel name"};

◆ m_pixelClusterRefTVPath

Gaudi::Property<std::string> DataPreparationPipeline::m_pixelClusterRefTVPath
private
Initial value:
{this, "PixelClusterRefTV", "",
"Path to pixel cluster reference test vector"}

Pixel cluster reference test vector.

Definition at line 74 of file DataPreparationPipeline.h.

74 {this, "PixelClusterRefTV", "",
75 "Path to pixel cluster reference test vector"};

◆ m_pixelClusterTVPath

Gaudi::Property<std::string> DataPreparationPipeline::m_pixelClusterTVPath
private
Initial value:
{this, "PixelClusterTV", "",
"Path to pixel cluster test vector"}

Pixel cluster test vector.

Definition at line 72 of file DataPreparationPipeline.h.

72 {this, "PixelClusterTV", "",
73 "Path to pixel cluster test vector"};

◆ m_program

cl::Program IntegrationBase::m_program
protectedinherited

Program object containing the kernel.

Definition at line 68 of file IntegrationBase.h.

◆ m_pxlClusteringInBuff

cl::Buffer DataPreparationPipeline::m_pxlClusteringInBuff
private

Buffer for pixel clustering input.

Definition at line 51 of file DataPreparationPipeline.h.

◆ m_pxlClusteringOutBuff

cl::Buffer DataPreparationPipeline::m_pxlClusteringOutBuff
private

Buffer for pixel clustering output.

Definition at line 52 of file DataPreparationPipeline.h.

◆ m_spacepointInBuff

cl::Buffer DataPreparationPipeline::m_spacepointInBuff
private

Buffer for spacepoint input.

Definition at line 54 of file DataPreparationPipeline.h.

◆ m_spacepointKernel

cl::Kernel DataPreparationPipeline::m_spacepointKernel
private

Kernel for spacepoint.

Definition at line 49 of file DataPreparationPipeline.h.

◆ m_spacepointKernelName

Gaudi::Property<std::string> DataPreparationPipeline::m_spacepointKernelName
private
Initial value:
{this,
"SpacepointKernelName", "",
"Spacepoint kernel name"}

Spacepoint kernel name.

Definition at line 67 of file DataPreparationPipeline.h.

67 {this,
68 "SpacepointKernelName", "",
69 "Spacepoint kernel name"};

◆ m_spacepointOutBuff

cl::Buffer DataPreparationPipeline::m_spacepointOutBuff
private

Buffer for spacepoint output.

Definition at line 55 of file DataPreparationPipeline.h.

◆ m_spacepointRefTVPath

Gaudi::Property<std::string> DataPreparationPipeline::m_spacepointRefTVPath
private
Initial value:
{this, "SpacepointRefTV", "",
"Path to spacepoint reference test vector"}

Spacepoint reference test vector.

Definition at line 79 of file DataPreparationPipeline.h.

79 {this, "SpacepointRefTV", "",
80 "Path to spacepoint reference test vector"};

◆ m_spacepointTVPath

Gaudi::Property<std::string> DataPreparationPipeline::m_spacepointTVPath
private
Initial value:
{this, "SpacepointTV", "",
"Path to spacepoint test vector"}

Spacepoint test vector.

Definition at line 77 of file DataPreparationPipeline.h.

77 {this, "SpacepointTV", "",
78 "Path to spacepoint test vector"};

◆ m_testVectorTool

ToolHandle<TestVectorTool> DataPreparationPipeline::m_testVectorTool
private
Initial value:
{
this, "TestVectorTool", "TestVectorTool",
"Tool to prepare test vector"}

Tool handle for TestVectorTool.

Definition at line 101 of file DataPreparationPipeline.h.

101 {
102 this, "TestVectorTool", "TestVectorTool",
103 "Tool to prepare test vector"};

◆ m_usePassThrough

Gaudi::Property<bool> DataPreparationPipeline::m_usePassThrough
private
Initial value:
{
this, "RunPassThrough", false,
"Use the passthrough tool instead of data prep pipeline"}

Use the pass through tool instead of data prep pipeline.

It can be either sw or hw, setting in the tool

Definition at line 83 of file DataPreparationPipeline.h.

83 {
84 this, "RunPassThrough", false,
85 "Use the passthrough tool instead of data prep pipeline"};

◆ m_useTV

Gaudi::Property<bool> DataPreparationPipeline::m_useTV {this, "UseTV", false, "Use test vector"}
private

Use test vector.

Definition at line 86 of file DataPreparationPipeline.h.

86{this, "UseTV", false, "Use test vector"};

◆ m_varHandleArraysDeclared

bool AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_varHandleArraysDeclared
privateinherited

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vhka

std::vector<SG::VarHandleKeyArray*> AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_vhka
privateinherited

Definition at line 398 of file AthCommonDataStore.h.

◆ m_xAODClusterMaker

ToolHandle<xAODClusterMaker> DataPreparationPipeline::m_xAODClusterMaker
private
Initial value:
{
this, "xAODClusterMaker", "xAODClusterMaker",
"tool to make cluster"}

Tool handle for xAODClusterMaker.

Definition at line 89 of file DataPreparationPipeline.h.

89 {
90 this, "xAODClusterMaker", "xAODClusterMaker",
91 "tool to make cluster"};

◆ m_xAODSpacePointMaker

ToolHandle<xAODSpacePointMaker> DataPreparationPipeline::m_xAODSpacePointMaker
private
Initial value:
{
this, "xAODSpacePointMaker", "xAODSpacePointMaker",
"tool to make space point"}

Tool handle for xAODSpacePointMaker.

Definition at line 93 of file DataPreparationPipeline.h.

93 {
94 this, "xAODSpacePointMaker", "xAODSpacePointMaker",
95 "tool to make space point"};

◆ m_xclbin

Gaudi::Property<std::string> DataPreparationPipeline::m_xclbin
private
Initial value:
{
this, "xclbin", "",
"xclbin path and name"}

Path and name of the xclbin file.

Definition at line 58 of file DataPreparationPipeline.h.

58 {
59 this, "xclbin", "",
60 "xclbin path and name"};

The documentation for this class was generated from the following files: