How to convert C# code to CUDAfy
CUDA is wisely use because it get less computation time. CUDA suits for more computational project like adding very large matrix. But thing is it can use only C and C++ languages. Converting C# into CUDAfy language is little bit difficult because CUDAfy did not have any inbuilt functions. So we have to implement the every function that we need. CUDAfy only allowed use primitive data type arrays. In this case we have to implement functions and other data types using primitive types arrays.
Primitive data types are boolean , byte , char , short , int , long , float and double. In this blog I tried to implement some function and data types in C# to CUDAfy.
First you make sure that you have working environment of CUDAfy, Follow this link for setting CUDAfy environment in your machine.
Firstly I create a CUDAfy Tuple data type.Open a new C# class and add these three lines in top of the class.
After this add the these line where you have to call the GPU function. In my case, I write a whole class in CUDAfy. So I add those line into my main method. If you want to convert one function or several function, you have to add these lines inside that function.
These three lines is for load the gpu module.It take the maximum time comparing to the calculation. Then I used my CUDAfy tuple data type(Tuple_Cuda). Integer arrays of x,y and z are the inputs to test. Then we have to copy those integer arrays to GPU.
Now there is dev_x, dev_y and dev_z integer arrays are in the GPU. Then we call the GPU function to do specified task.
The result of the function we cant display through GPU. SO we need to copy back to CPU to print or do anything else.
The function "calGPU"
this function does is get the x zeroth element and put into z zeroth position and get the y first element and put into z first position. You can change this you like and try different ways to make sure your Tuple_cuda function is correctly work. This is the Tuple_cuda function I coded.
The label in top of the function is important ("[Cudafy]"). It is the way separate GPU function and CPU function. Now you can implement any function or data type like this. 😌
Comments
Post a Comment