Click here to Skip to main content
15,867,453 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,

I'm a beginner in CUDAfy.Net GPU programming and i want copy string array to gpu to make an operation, how i can do it ?? and i'm using this syntax to copy int array:

int N = 100000;
int[] a = new int[N];

// allocate the memory on the GPU
int[] dev_a = gpu.Allocate<int>(a);

Can any one help me to copy string array ??

Thanks all.
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900