CMS 3D CMS Logo

EcalPulseShapesGPU.cc
Go to the documentation of this file.
2 
5 
7  : valuesEB_{values.barrelItems()}, valuesEE_{values.endcapItems()} {}
8 
10  // deallocation
11  cudaCheck(cudaFree(values));
12 }
13 
14 EcalPulseShapesGPU::Product const& EcalPulseShapesGPU::getProduct(cudaStream_t cudaStream) const {
15  auto const& product = product_.dataForCurrentDeviceAsync(
16  cudaStream, [this](EcalPulseShapesGPU::Product& product, cudaStream_t cudaStream) {
17  // malloc
18  cudaCheck(cudaMalloc((void**)&product.values,
19  (this->valuesEE_.size() + this->valuesEB_.size()) * sizeof(EcalPulseShape)));
20 
21  // offset in terms of sizeof(EcalPulseShape) - plain c array
22  uint32_t offset = this->valuesEB_.size();
23 
24  // transfer eb
25  cudaCheck(cudaMemcpyAsync(product.values,
26  this->valuesEB_.data(),
27  this->valuesEB_.size() * sizeof(EcalPulseShape),
28  cudaMemcpyHostToDevice,
29  cudaStream));
30 
31  // transfer ee starting at values + offset
32  cudaCheck(cudaMemcpyAsync(product.values + offset,
33  this->valuesEE_.data(),
34  this->valuesEE_.size() * sizeof(EcalPulseShape),
35  cudaMemcpyHostToDevice,
36  cudaStream));
37  });
38 
39  return product;
40 }
41 
EcalPulseShapesGPU(EcalPulseShapes const &)
cms::cuda::ESProduct< Product > product_
Product const & getProduct(cudaStream_t) const
#define TYPELOOKUP_DATA_REG(_dataclass_)
Definition: typelookup.h:102
std::vector< EcalPulseShape > const & valuesEE_
#define cudaCheck(ARG,...)
Definition: cudaCheck.h:69
std::vector< EcalPulseShape > const & valuesEB_