forked from makortel/pixel-standalone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rawtodigi_alpaka.h
35 lines (27 loc) · 1.34 KB
/
rawtodigi_alpaka.h
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
#ifndef rawtodigi_alpaka_h_
#define rawtodigi_alpaka_h_
#include "alpakaConfig.h"
class Input;
class Output;
namespace ALPAKA_ARCHITECTURE_NAMESPACE {
struct rawtodigi_kernel {
template <typename T_Acc>
ALPAKA_FN_ACC void operator()(T_Acc const& acc,
const Input* input,
Output* output,
bool useQualityInfo,
bool includeErrors,
bool debug) const;
};
// explicit template instantiation declaration for ALPAKA_ACCELERATOR_NAMESPACE::Acc
extern template ALPAKA_FN_ACC void rawtodigi_kernel::operator()(ALPAKA_ACCELERATOR_NAMESPACE::Acc const& acc,
const Input* input,
Output* output,
bool useQualityInfo,
bool includeErrors,
bool debug) const;
} // namespace ALPAKA_ARCHITECTURE_NAMESPACE
namespace ALPAKA_ACCELERATOR_NAMESPACE {
using namespace ALPAKA_ARCHITECTURE_NAMESPACE;
} // namespace ALPAKA_ACCELERATOR_NAMESPACE
#endif // rawtodigi_alpaka_h_