cuda - Using GPU Shared Memory : A check on my understanding -


i have gtx titan has 49152 bytes/block of shared memory. i'm trying solve ~9000 coupled ode's , store these ~9000 concentrations, doubles, in shared memory in order calculate rate of change of each concentration.

so i'd affirm not possible since double 8 bytes , 49152/8 = 6144. right?

your understanding correct. cannot simultaneously store 9000 double quantities in shared memory accessible single threadblock (i.e. in single sm).


Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -

php - Accessing static methods using newly created $obj or using class Name -