test_cuda.h
Go to the documentation of this file.
1 /*
2 * ECVL - European Computer Vision Library
3 * Version: 0.3.4
4 * copyright (c) 2021, Università degli Studi di Modena e Reggio Emilia (UNIMORE), AImageLab
5 * Authors:
6 * Costantino Grana (costantino.grana@unimore.it)
7 * Federico Bolelli (federico.bolelli@unimore.it)
8 * Michele Cancilla (michele.cancilla@unimore.it)
9 * Laura Canalini (laura.canalini@unimore.it)
10 * Stefano Allegretti (stefano.allegretti@unimore.it)
11 * All rights reserved.
12 */
13 
14 #ifndef ECVL_TEST_CUDA_H_
15 #define ECVL_TEST_CUDA_H_
16 
17 #include <stdint.h>
18 
19 #define ECVL_TUPLE(type, ...) \
20 void RunTestCpuToGpuKernel##type(const uint8_t* data, uint8_t* res); \
21 void RunTestGpuToCpuKernel##type(uint8_t* data);
23 #undef ECVL_TUPLE
24 
25 
26 #endif // ECVL_TEST_CUDA_H_