Hi
Is there any way to create methods in the kernel files that can be called from other methods in the kernel
eg creating the subSort() method in the example below?
Thanks,
Emer
__global__ void sortNonBitonicListOfLength4(int *array)
{
subSort(array, 0, 4);
subSort(array, 4, 8);
}
//subSort() method
}```