Research Article

Heterogeneous Computing for Vertebra Detection and Segmentation in X-Ray Images

Listing 2

The codelet StarPU.
1  static starpu_codelet cl = {
2 .where = STARPU_CPU|STARPU_CUDA,  // CPU & GPU cores
3 .cpu_func = cpu_impl,   // define CPU fct
4 .cuda_func = cuda_impl,  // define GPU fct
5 .nbuffers = 1  // buffers number
6  } ;