1/*
2 * initialize_vcl.hpp
3 *
4 * Created on: Aug 21, 2018
5 * Author: i-bird
6 */
7
8#ifndef INITIALIZE_VCL_HPP_
9#define INITIALIZE_VCL_HPP_
10
11/*! \brief If openfpm has to work on GPU we have to be sure openfpm_init is called on a file compiled with NVCC
12 *
13 * There are two implementation initialize.cpp and initialize.cu. In configuration stage the second implementation is chosen
14 * if the test has to run on GPU
15 *
16 */
17void openfpm_init_wrapper(int * argc, char *** argv);
18void openfpm_finalize_wrapper();
19
20#endif /* INITIALIZE_VCL_HPP_ */
21