I'm trying to understand error that didn't allow me to find minimum element of array with 1024 and more elements. Here is the full Fortran code compiled with PGI Workstation 12.3 (kernel.cuf): http://pastebin.com/aJAPLWqV And here is C wrap functions (c.cu): http://pastebin.com/BRWQ1awa
Compiling on Windows: nvcc -m32 -c -arch sm_10 c.cu --cl-version 2008 -o a.obj pgf90 kernel.cuf a.obj
Short description:
Okay, I have interface wrote on Fortran:
interface thrustmin
function min_float(input,N) bind(C,name="min_float_wrapper")
use iso_c_binding
real(c_float),device:: input(*)
integer(c_int),value:: N, min_float
end function
end interface
And also C wrapper function described as:
extern "C" {
int min_float_wrapper( float *data, int N)
{
thrust::device_ptr <float> dev_ptr(data);
return thrust::min_element(dev_ptr, dev_ptr + N) - dev_ptr;
}
}
I'm trying to calculate minimum element on GPU using interface:
real, allocatable, device :: dev_array(:)
integer :: x, N / 1024 /
allocate(dev_array(N))
...
x = thrustmin(dev_array, size(dev_array))
After this line program just exits.
Error is occuring, when I make N = 1024, but N = 1023 and less works okay. System is Windows XP SP3, NVidia Geforce 9600 GT.
thrust::sort is working good, even for 2^20 * 50 elements (though pretty slow).
thrust::device_ptris for wrapping an existing device pointer. You seem to be passing it a host memory pointer. – talonmies Apr 26 '12 at 20:40