1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef EventFilter_EcalRawToDigi_plugins_UnpackGPU_h
#define EventFilter_EcalRawToDigi_plugins_UnpackGPU_h
#include "DeclsForKernels.h"
namespace ecal {
namespace raw {
// FIXME: bundle up uint32_t values
void entryPoint(InputDataCPU const&,
InputDataGPU&,
OutputDataGPU&,
ScratchDataGPU&,
OutputDataCPU&,
ConditionsProducts const&,
cudaStream_t,
uint32_t const,
uint32_t const);
} // namespace raw
} // namespace ecal
#endif // EventFilter_EcalRawToDigi_plugins_UnpackGPU_h
|