]> AND Private Git Repository - book_gpu.git/blob - BookGPU/Chapters/chapter3/code/medianGeneric.cu~
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
correct ch14
[book_gpu.git] / BookGPU / Chapters / chapter3 / code / medianGeneric.cu~
1 __device__ inline void s(int* a, int* b)
2 {
3   
4   int tmp ;
5   if (*a > *b)
6         {
7           tmp = *b ;
8           *b = *a ;
9           *a = tmp ;
10           }
11 }