Cheetah - SKA - PSS - Prototype Time Domain Search Pipeline
TdrtMap.cu
1 #include "cheetah/tdrt/cuda/TdrtMap.cuh"
2 
3 namespace ska {
4 namespace cheetah {
5 namespace tdrt {
6 namespace cuda {
7 
13 inline __host__ __device__
14 std::size_t TdrtMap::operator()(std::size_t idx) const
15 {
16  return (std::size_t)(idx+idx*accel_fact*(idx-size));
17 }
18 
19 } // namespace cuda
20 } // namespace tdrt
21 } // namespace cheetah
22 } // namespace ska
23 
24 
Some limits and constants for FLDO.
Definition: Brdz.h:35
__host__ __device__ std::size_t operator()(std::size_t idx) const
Functor for remapping timeseries using time domain resampling.
Definition: TdrtMap.cu:14