numba-dpex icon indicating copy to clipboard operation
numba-dpex copied to clipboard

Support `@guvectorize`

Open PokhodenkoSA opened this issue 4 years ago • 0 comments

Support for @guvectorize is missing.

Features:

  • [ ] Passing intra-device arrays
  • [ ] Launch asynchronous
  • [ ] Calling Device Functions
  • [ ] Explicitly control the maximum size of the thread block

Example:

@guvectorize(['void(float32[:,:], float32[:,:], float32[:,:])'],
             '(m,n),(n,p)->(m,p)')
def matmulcore(A, B, C):
    ...

PokhodenkoSA avatar Jan 22 '21 08:01 PokhodenkoSA