CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Classes | Public Member Functions | Private Attributes
HcalSiPMParametersGPU Class Reference

#include <HcalSiPMParametersGPU.h>

Classes

struct  Product
 

Public Member Functions

Product const & getProduct (cudaStream_t) const
 
 HcalSiPMParametersGPU (HcalSiPMParameters const &)
 
 ~HcalSiPMParametersGPU ()=default
 

Private Attributes

std::vector< int,
cms::cuda::HostAllocator< int > > 
auxi1_
 
std::vector< float,
cms::cuda::HostAllocator
< float > > 
auxi2_
 
std::vector< float,
cms::cuda::HostAllocator
< float > > 
darkCurrent_
 
std::vector< float,
cms::cuda::HostAllocator
< float > > 
fcByPE_
 
cms::cuda::ESProduct< Productproduct_
 
uint64_t totalChannels_
 
std::vector< int,
cms::cuda::HostAllocator< int > > 
type_
 

Detailed Description

Definition at line 13 of file HcalSiPMParametersGPU.h.

Constructor & Destructor Documentation

HcalSiPMParametersGPU::HcalSiPMParametersGPU ( HcalSiPMParameters const &  parameters)

Definition at line 6 of file HcalSiPMParametersGPU.cc.

References HcalCondObjectContainer< Item >::getAllContainers().

7  : totalChannels_{parameters.getAllContainers()[0].second.size() + parameters.getAllContainers()[1].second.size()},
13  auto const containers = parameters.getAllContainers();
14 
15  // fill in eb
16  auto const& barrelValues = containers[0].second;
17  for (uint64_t i = 0; i < barrelValues.size(); ++i) {
18  auto const& item = barrelValues[i];
19  type_[i] = item.getType();
20  auxi1_[i] = item.getauxi1();
21  fcByPE_[i] = item.getFCByPE();
22  darkCurrent_[i] = item.getDarkCurrent();
23  auxi2_[i] = item.getauxi2();
24  }
25 
26  // fill in ee
27  auto const& endcapValues = containers[1].second;
28  auto const offset = barrelValues.size();
29  for (uint64_t i = 0; i < endcapValues.size(); ++i) {
30  auto const off = offset + i;
31  auto const& item = endcapValues[i];
32  type_[off] = item.getType();
33  auxi1_[off] = item.getauxi1();
34  fcByPE_[off] = item.getFCByPE();
35  darkCurrent_[off] = item.getDarkCurrent();
36  auxi2_[off] = item.getauxi2();
37  }
38 }
std::vector< int, cms::cuda::HostAllocator< int > > type_
std::vector< float, cms::cuda::HostAllocator< float > > auxi2_
unsigned long long uint64_t
Definition: Time.h:13
std::vector< int, cms::cuda::HostAllocator< int > > auxi1_
std::vector< float, cms::cuda::HostAllocator< float > > darkCurrent_
std::vector< float, cms::cuda::HostAllocator< float > > fcByPE_
HcalSiPMParametersGPU::~HcalSiPMParametersGPU ( )
default

Member Function Documentation

HcalSiPMParametersGPU::Product const & HcalSiPMParametersGPU::getProduct ( cudaStream_t  stream) const

Definition at line 40 of file HcalSiPMParametersGPU.cc.

References HcalSiPMParametersGPU::Product::auxi1, auxi1_, HcalSiPMParametersGPU::Product::auxi2, auxi2_, cms::cuda::copyAsync(), HcalSiPMParametersGPU::Product::darkCurrent, darkCurrent_, HcalSiPMParametersGPU::Product::fcByPE, fcByPE_, product_, cms::cuda::stream, HcalSiPMParametersGPU::Product::type, and type_.

40  {
41  auto const& product =
42  product_.dataForCurrentDeviceAsync(stream, [this](HcalSiPMParametersGPU::Product& product, cudaStream_t stream) {
43  // allocate
44  product.type = cms::cuda::make_device_unique<int[]>(type_.size(), stream);
45  product.auxi1 = cms::cuda::make_device_unique<int[]>(auxi1_.size(), stream);
46  product.fcByPE = cms::cuda::make_device_unique<float[]>(fcByPE_.size(), stream);
47  product.darkCurrent = cms::cuda::make_device_unique<float[]>(darkCurrent_.size(), stream);
48  product.auxi2 = cms::cuda::make_device_unique<float[]>(auxi2_.size(), stream);
49 
50  // transfer
51  cms::cuda::copyAsync(product.type, type_, stream);
52  cms::cuda::copyAsync(product.auxi1, auxi1_, stream);
53  cms::cuda::copyAsync(product.fcByPE, fcByPE_, stream);
55  cms::cuda::copyAsync(product.auxi2, auxi2_, stream);
56  });
57 
58  return product;
59 }
cms::cuda::ESProduct< Product > product_
uint32_t T const *__restrict__ uint32_t const *__restrict__ int32_t int Histo::index_type cudaStream_t stream
edm::propagate_const_array< cms::cuda::device::unique_ptr< float[]> > auxi2
std::vector< int, cms::cuda::HostAllocator< int > > type_
std::vector< float, cms::cuda::HostAllocator< float > > auxi2_
void copyAsync(device::unique_ptr< T > &dst, const host::unique_ptr< T > &src, cudaStream_t stream)
Definition: copyAsync.h:20
edm::propagate_const_array< cms::cuda::device::unique_ptr< int[]> > type
edm::propagate_const_array< cms::cuda::device::unique_ptr< float[]> > darkCurrent
edm::propagate_const_array< cms::cuda::device::unique_ptr< int[]> > auxi1
std::vector< int, cms::cuda::HostAllocator< int > > auxi1_
edm::propagate_const_array< cms::cuda::device::unique_ptr< float[]> > fcByPE
std::vector< float, cms::cuda::HostAllocator< float > > darkCurrent_
std::vector< float, cms::cuda::HostAllocator< float > > fcByPE_

Member Data Documentation

std::vector<int, cms::cuda::HostAllocator<int> > HcalSiPMParametersGPU::auxi1_
private

Definition at line 35 of file HcalSiPMParametersGPU.h.

Referenced by getProduct().

std::vector<float, cms::cuda::HostAllocator<float> > HcalSiPMParametersGPU::auxi2_
private

Definition at line 36 of file HcalSiPMParametersGPU.h.

Referenced by getProduct().

std::vector<float, cms::cuda::HostAllocator<float> > HcalSiPMParametersGPU::darkCurrent_
private

Definition at line 36 of file HcalSiPMParametersGPU.h.

Referenced by getProduct().

std::vector<float, cms::cuda::HostAllocator<float> > HcalSiPMParametersGPU::fcByPE_
private

Definition at line 36 of file HcalSiPMParametersGPU.h.

Referenced by getProduct().

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

Definition at line 38 of file HcalSiPMParametersGPU.h.

Referenced by getProduct().

uint64_t HcalSiPMParametersGPU::totalChannels_
private

Definition at line 34 of file HcalSiPMParametersGPU.h.

std::vector<int, cms::cuda::HostAllocator<int> > HcalSiPMParametersGPU::type_
private