This kernel using two __restrict__ int arrays compiles fine:
__global__ void kerFoo( int* __restrict__ arr0, int* __restrict__ arr1, int num )
{
for ( /* Iterate over array */ )
arr1[i] = arr0[i]; // Copy one to other
}
However, the same two int arrays composed into a pointer array fails compilation:
__global__ void kerFoo( int* __restrict__ arr[2], int num )
{
for ( /* Iterate over array */ )
arr[1][i] = arr[0][i]; // Copy one to other
}
The error given by the compiler is:
error: invalid use of `restrict'
I have certain structures that are composed as an array of pointers to arrays. (For example, a struct passed to the kernel that has int* arr[16].) How do I pass them to kernels and be able to apply __restrict__ on them?
__restrict__really is useful for pointers butint* arr[2]actually is an array if two points. I think, it does not work for host code to... – Yappie Dec 7 '11 at 11:20__restrict__make absolutely no sense. The whole point of__restrict__is to tell the compiler that two or more pointer arguments will never overlap in memory. You don't have two pointer arguments in that case, so__restrict__is not applicable. – talonmies Dec 7 '11 at 13:45int * __restrict__ * __restrict__ arr? That may be excessive, though. You may only needint * __restrict__ * arr. – harrism Sep 16 '12 at 23:42