-
Notifications
You must be signed in to change notification settings - Fork 4.4k
/
Copy pathTestAlpakaESProducerC.cc
49 lines (43 loc) · 1.93 KB
/
TestAlpakaESProducerC.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/Utilities/interface/ESGetToken.h"
#include "HeterogeneousCore/AlpakaCore/interface/alpaka/ESProducer.h"
#include "HeterogeneousCore/AlpakaCore/interface/alpaka/ModuleFactory.h"
#include "HeterogeneousCore/AlpakaInterface/interface/config.h"
#include "HeterogeneousCore/AlpakaInterface/interface/host.h"
#include "HeterogeneousCore/AlpakaInterface/interface/memory.h"
#include "HeterogeneousCore/AlpakaTest/interface/AlpakaESTestRecords.h"
#include "HeterogeneousCore/AlpakaTest/interface/ESTestData.h"
#include "HeterogeneousCore/AlpakaTest/interface/alpaka/AlpakaESTestData.h"
namespace ALPAKA_ACCELERATOR_NAMESPACE {
/**
* This class demonstrates an ESProducer that uses the
* PortableCollection-based data model, and that consumes a standard
* host ESProduct and converts the data into PortableCollection, and
* implicitly transfers the data product to device
*/
class TestAlpakaESProducerC : public ESProducer {
public:
TestAlpakaESProducerC(edm::ParameterSet const& iConfig) : ESProducer(iConfig) {
auto cc = setWhatProduced(this);
token_ = cc.consumes();
}
static void fillDescriptions(edm::ConfigurationDescriptions& descriptions) {
edm::ParameterSetDescription desc;
descriptions.addWithDefaultLabel(desc);
}
std::optional<AlpakaESTestDataCHost> produce(AlpakaESTestRecordC const& iRecord) {
auto const& input = iRecord.get(token_);
int const size = 5;
// TODO: pinned allocation?
// TODO: cached allocation?
AlpakaESTestDataCHost product(size, cms::alpakatools::host());
for (int i = 0; i < size; ++i) {
product.view()[i].x() = input.value() - i;
}
return product;
}
private:
edm::ESGetToken<cms::alpakatest::ESTestDataC, AlpakaESTestRecordC> token_;
};
} // namespace ALPAKA_ACCELERATOR_NAMESPACE
DEFINE_FWK_EVENTSETUP_ALPAKA_MODULE(TestAlpakaESProducerC);