Skip to content

Instantly share code, notes, and snippets.

@wpjunior
Last active December 9, 2018 17:00
Show Gist options
  • Select an option

  • Save wpjunior/72ff3889eb699f8505648605d0752ab4 to your computer and use it in GitHub Desktop.

Select an option

Save wpjunior/72ff3889eb699f8505648605d0752ab4 to your computer and use it in GitHub Desktop.
numba-examples
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