CMS 3D CMS Logo

EcalRechitChannelStatusGPU.cc
Go to the documentation of this file.
2 
5 
7  // fill in eb
8  auto const& barrelValues = values.barrelItems();
9  for (unsigned int i = 0; i < barrelValues.size(); i++) {
10  status_[i] = barrelValues[i].getEncodedStatusCode();
11  }
12 
13  // fill in ee
14  auto const& endcapValues = values.endcapItems();
15  auto const offset = barrelValues.size();
16  for (unsigned int i = 0; i < endcapValues.size(); i++) {
17  status_[offset + i] = endcapValues[i].getEncodedStatusCode();
18  }
19 }
20 
22  auto const& product = product_.dataForCurrentDeviceAsync(
23  cudaStream, [this](EcalRechitChannelStatusGPU::Product& product, cudaStream_t cudaStream) {
24  // allocate
25  product.status = cms::cuda::make_device_unique<uint16_t[]>(status_.size(), cudaStream);
26  // transfer
27  cms::cuda::copyAsync(product.status, status_, cudaStream);
28  });
29 
30  return product;
31 }
32 
size
Write out results.
cms::cuda::ESProduct< Product > product_
Product const & getProduct(cudaStream_t) const
std::vector< uint16_t, cms::cuda::HostAllocator< uint16_t > > status_
EcalRechitChannelStatusGPU(EcalChannelStatus const &)
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< uint16_t[]> > status
#define TYPELOOKUP_DATA_REG(_dataclass_)
Definition: typelookup.h:102