Created
August 7, 2021 06:28
-
-
Save sachith-1/9adeaa20ada7e291cadbd99ae689a2c7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
__global__ void getSum (int *n1, int *n2, int *sumData){ | |
*sumData = *n1 + *n2; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment