CMS 3D CMS Logo

HcalGainWidthsGPU.cc
Go to the documentation of this file.
5 
6 // FIXME: add proper getters to conditions
8  : totalChannels_{gains.getAllContainers()[0].second.size() + gains.getAllContainers()[1].second.size()},
9  value0_(totalChannels_),
10  value1_(totalChannels_),
11  value2_(totalChannels_),
12  value3_(totalChannels_) {
13  auto const gainContainers = gains.getAllContainers();
14 
15  // fill in eb
16  auto const& barrelValues = gainContainers[0].second;
17  for (uint64_t i = 0; i < barrelValues.size(); ++i) {
18  value0_[i] = barrelValues[i].getValue(0);
19  value1_[i] = barrelValues[i].getValue(1);
20  value2_[i] = barrelValues[i].getValue(2);
21  value3_[i] = barrelValues[i].getValue(3);
22  }
23 
24  // fill in ee
25  auto const& endcapValues = gainContainers[1].second;
26  auto const offset = barrelValues.size();
27  for (uint64_t i = 0; i < endcapValues.size(); ++i) {
28  value0_[i + offset] = endcapValues[i].getValue(0);
29  value1_[i + offset] = endcapValues[i].getValue(1);
30  value2_[i + offset] = endcapValues[i].getValue(2);
31  value3_[i + offset] = endcapValues[i].getValue(3);
32  }
33 }
34 
36  auto const& product =
37  product_.dataForCurrentDeviceAsync(stream, [this](HcalGainWidthsGPU::Product& product, cudaStream_t stream) {
38  // allocate
39  product.value0 = cms::cuda::make_device_unique<float[]>(value0_.size(), stream);
40  product.value1 = cms::cuda::make_device_unique<float[]>(value1_.size(), stream);
41  product.value2 = cms::cuda::make_device_unique<float[]>(value2_.size(), stream);
42  product.value3 = cms::cuda::make_device_unique<float[]>(value3_.size(), stream);
43 
44  // transfer
49  });
50 
51  return product;
52 }
53 
HcalGainWidthsGPU::value2_
std::vector< float, cms::cuda::HostAllocator< float > > value2_
Definition: HcalGainWidthsGPU.h:34
mps_fire.i
i
Definition: mps_fire.py:428
HcalGainWidthsGPU::Product::value0
edm::propagate_const_array< cms::cuda::device::unique_ptr< float[]> > value0
Definition: HcalGainWidthsGPU.h:16
HcalGainWidthsGPU.h
HcalGainWidthsGPU::HcalGainWidthsGPU
HcalGainWidthsGPU(HcalGainWidths const &)
Definition: HcalGainWidthsGPU.cc:7
HcalGainWidthsGPU::Product
Definition: HcalGainWidthsGPU.h:15
cms::cuda::stream
uint32_t const T *__restrict__ const uint32_t *__restrict__ int32_t int Histo::index_type cudaStream_t stream
Definition: HistoContainer.h:51
typelookup.h
HcalGainWidthsGPU::value1_
std::vector< float, cms::cuda::HostAllocator< float > > value1_
Definition: HcalGainWidthsGPU.h:34
HcalGainWidthsGPU::Product::value1
edm::propagate_const_array< cms::cuda::device::unique_ptr< float[]> > value1
Definition: HcalGainWidthsGPU.h:17
HcalGainWidthsGPU::product_
cms::cuda::ESProduct< Product > product_
Definition: HcalGainWidthsGPU.h:36
HcalGainWidths
Definition: HcalGainWidths.h:17
HcalGainWidthsGPU::value3_
std::vector< float, cms::cuda::HostAllocator< float > > value3_
Definition: HcalGainWidthsGPU.h:34
copyAsync.h
HcalCondObjectContainer::getAllContainers
const tAllContWithNames getAllContainers() const
Definition: HcalCondObjectContainer.h:81
HcalGainWidthsGPU::Product::value2
edm::propagate_const_array< cms::cuda::device::unique_ptr< float[]> > value2
Definition: HcalGainWidthsGPU.h:18
TYPELOOKUP_DATA_REG
#define TYPELOOKUP_DATA_REG(_dataclass_)
Definition: typelookup.h:102
HcalGainWidthsGPU::Product::value3
edm::propagate_const_array< cms::cuda::device::unique_ptr< float[]> > value3
Definition: HcalGainWidthsGPU.h:19
HcalGainWidths.h
HcalGainWidthsGPU
Definition: HcalGainWidthsGPU.h:13
HcalGainWidthsGPU::getProduct
const Product & getProduct(cudaStream_t) const
Definition: HcalGainWidthsGPU.cc:35
cond::uint64_t
unsigned long long uint64_t
Definition: Time.h:13
hltrates_dqm_sourceclient-live_cfg.offset
offset
Definition: hltrates_dqm_sourceclient-live_cfg.py:82
HcalGainWidthsGPU::value0_
std::vector< float, cms::cuda::HostAllocator< float > > value0_
Definition: HcalGainWidthsGPU.h:34
cms::cuda::copyAsync
void copyAsync(device::unique_ptr< T > &dst, const host::unique_ptr< T > &src, cudaStream_t stream)
Definition: copyAsync.h:20