Last active
December 9, 2018 17:00
-
-
Save wpjunior/72ff3889eb699f8505648605d0752ab4 to your computer and use it in GitHub Desktop.
numba-examples
This file contains hidden or 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
| from numba import cuda | |
| @cuda.jit | |
| def multiply_by_2(array): | |
| pos = cuda.grid(1) | |
| array[pos] = array[pos] * 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment