CMS 3D CMS Logo

List of all members | Classes | Public Member Functions | Static Public Member Functions | Private Attributes
EcalPulseShapesGPU Class Reference

#include <EcalPulseShapesGPU.h>

Classes

struct  Product
 

Public Member Functions

 EcalPulseShapesGPU (EcalPulseShapes const &)
 
Product const & getProduct (cudaStream_t) const
 
 ~EcalPulseShapesGPU ()=default
 

Static Public Member Functions

static std::string name ()
 

Private Attributes

cms::cuda::ESProduct< Productproduct_
 
std::vector< EcalPulseShape > const & valuesEB_
 
std::vector< EcalPulseShape > const & valuesEE_
 

Detailed Description

Definition at line 11 of file EcalPulseShapesGPU.h.

Constructor & Destructor Documentation

◆ EcalPulseShapesGPU()

EcalPulseShapesGPU::EcalPulseShapesGPU ( EcalPulseShapes const &  values)

Definition at line 6 of file EcalPulseShapesGPU.cc.

References contentValuesCheck::values.

7  : valuesEB_{values.barrelItems()}, valuesEE_{values.endcapItems()} {}
std::vector< EcalPulseShape > const & valuesEE_
std::vector< EcalPulseShape > const & valuesEB_

◆ ~EcalPulseShapesGPU()

EcalPulseShapesGPU::~EcalPulseShapesGPU ( )
default

Member Function Documentation

◆ getProduct()

EcalPulseShapesGPU::Product const & EcalPulseShapesGPU::getProduct ( cudaStream_t  cudaStream) const

Definition at line 14 of file EcalPulseShapesGPU.cc.

References cudaCheck, hltrates_dqm_sourceclient-live_cfg::offset, product_, EcalPulseShapesGPU::Product::values, valuesEB_, and valuesEE_.

14  {
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 }
cms::cuda::ESProduct< Product > product_
std::vector< EcalPulseShape > const & valuesEE_
#define cudaCheck(ARG,...)
Definition: cudaCheck.h:69
std::vector< EcalPulseShape > const & valuesEB_

◆ name()

static std::string EcalPulseShapesGPU::name ( )
inlinestatic

Member Data Documentation

◆ product_

cms::cuda::ESProduct<Product> EcalPulseShapesGPU::product_
private

Definition at line 36 of file EcalPulseShapesGPU.h.

Referenced by getProduct().

◆ valuesEB_

std::vector<EcalPulseShape> const& EcalPulseShapesGPU::valuesEB_
private

Definition at line 33 of file EcalPulseShapesGPU.h.

Referenced by getProduct().

◆ valuesEE_

std::vector<EcalPulseShape> const& EcalPulseShapesGPU::valuesEE_
private

Definition at line 34 of file EcalPulseShapesGPU.h.

Referenced by getProduct().