]> AND Private Git Repository - snake_gpu.git/blob - src/lib_snake_2_gpu.h
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Initial commit
[snake_gpu.git] / src / lib_snake_2_gpu.h
1 #ifndef __LIB_SNAKE_2_GPU_H__
2 #define __LIB_SNAKE_2_GPU_H__
3
4 void snake2gpu( struct snake_node_gpu * d_snake, struct snake_node * h_snake, int n );
5
6 void gpu2snake( struct snake_node_gpu * d_snake, struct snake_node ** h_snake, int n );
7
8 void dessine_snake(snake_node_gpu * snake, int nnodes, unsigned short ** img, int r);
9 #endif