Cheetah - SKA - PSS - Prototype Time Domain Search Pipeline
Tdao.cu
1 #include "cheetah/tdao/cuda/Tdao.cuh"
2 
3 
4 namespace ska {
5 namespace cheetah {
6 namespace tdao {
7 namespace cuda {
8 
9 Tdao::Tdao(Config const& config, tdao::Config const& algo_config)
10  : utils::AlgorithmBase<Config,tdao::Config>(config,algo_config)
11 {
12 }
13 
14 Tdao::~Tdao()
15 {
16 }
17 
18 
19 void Tdao::_prepare(std::size_t size)
20 {
21  _idxs.resize(size);
22  _powers.resize(size);
23  _h_idxs.resize(size);
24  _h_powers.resize(size);
25 }
26 
27 
28 } // namespace cuda
29 } // namespace tdao
30 } // namespace cheetah
31 } // namespace ska
Some limits and constants for FLDO.
Definition: Brdz.h:35
Tdao(Config const &config, tdao::Config const &algo_config)
Construct a new Tdao object.
Definition: Tdao.cu:9