dpnp icon indicating copy to clipboard operation
dpnp copied to clipboard

call_origin means such function can't executed in GPU?

Open wdkwyf opened this issue 4 years ago • 1 comments

Hi, I want to use dpnp.convolve, but the source code: return call_origin(numpy.convolve, a=a, v=v, mode=mode) So, I wonder whether this function can be execued in GPU or not? Thank you for your patience.

wdkwyf avatar Aug 11 '21 09:08 wdkwyf

Hi @wdkwyf! Your guesses are correct. Currently this function is only supported at the API level, the call makes a fallback on numpy, which executes only on CPU. Thank you!

samir-nasibli avatar Aug 11 '21 13:08 samir-nasibli