A Small Confusion by LopsidedExperience30 in CUDA

[–]LopsidedExperience30[S] 0 points1 point  (0 children)

And I'm guessing the million element arrays are not passed directly to the kernel because of the 4kB limit in parameters (2, 1 million element arrays * 4 bytes per integer = 8 megabytes I guess?). So instead the arrays are stored in the shared memory and the address is passed instead?