I try to Malloc more than 512Mb memory use cudaMalloc on C870 board and it report error. Does any on know is there any limit on cudaMalloc ?
spl_init on some boards is called after stack and heap relocation, on some platforms spl_relocate_stack_gd is called to handle setting the limit to its value CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN when simple SPL malloc is enabled during relocation. spl_init should then not re-assign the ol...
So to allocate a 1920x1080x10 3D array, do this:cudaExtent extent = make_cudaExtent( 1920, 1080, 10); chanDesc = cudaCreateChannelDesc ( 32, 0, 0, 0, cudaChannelFormatKindFloat); err = cudaMalloc3DArray ( &(devYAll[0]), &chanDesc, extent, 0); In this call, the size of the...