]> rtime.felk.cvut.cz Git - hercules2020/kcf.git/blob - src/cuda_functions.cuh
99cf132e8aad72e4eaa45bab7ee50f899b248fff
[hercules2020/kcf.git] / src / cuda_functions.cuh
1 #ifndef CUDA_FUNCTIONS_H
2 #define CUDA_FUNCTIONS_H
3
4 #include "cuda_runtime.h"
5 #include "cuda_error_check.hpp"
6
7 void cuda_gaussian_correlation(float *data_in, float *data_out, float *xf_sqr_norm, float *yf_sqr_norm, double sigma,
8                                int n_channels, int n_scales, int rows, int cols);
9
10 #endif