0
Numpy Matrix Multiplication
Is there a way to run numpy matrix multiplication on the Gpu? For example in my only code I have on my profile, in my feed forward function.
1 Resposta
0
You can't do that with numpy.
But search for Numba, Theano, PyTorch or PyCUDA for different paradigms for accelerating Python with GPUs.
You can use tensors in pytorch which works similar to numpy arrays and use GPU Acceleration.