7 #include <cuda_runtime.h> 35 : size_(
config.getParameter<uint32_t>(
"size")) {}
39 desc.add<uint32_t>(
"size", 1024 * 1024);
47 std::cout <<
"The CUDAService is not available or disabled, the test will be skipped.\n";
52 std::random_device rd{};
53 std::default_random_engine rand{rd()};
54 std::normal_distribution<float> dist{0., 1.};
57 constexpr
float epsilon = 0.000001;
60 std::vector<float> in1_h(
size_);
61 std::vector<float> in2_h(
size_);
62 std::vector<float> out_h(
size_);
66 in1_h[
i] = dist(rand);
67 in2_h[
i] = dist(rand);
97 float sum = in1_h[
i] + in2_h[
i];
void analyze(edm::StreamID, edm::Event const &event, edm::EventSetup const &setup) const override
void addWithDefaultLabel(ParameterSetDescription const &psetDescription)
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e< void, edm::EventID const &, edm::Timestamp const & > We also list in braces which AR_WATCH_USING_METHOD_ is used for those or
~CUDATestKernelAdditionModule() override=default
#define DEFINE_FWK_MODULE(type)
void wrapper_add_vectors_f(const float *__restrict__ in1, const float *__restrict__ in2, float *__restrict__ out, size_t size)
CUDATestKernelAdditionModule(edm::ParameterSet const &config)
#define cudaCheck(ARG,...)