Soarex16 / NeuralNetStudy

Just practice with implementation of multilayer NN using python
GNU General Public License v3.0
0 stars 0 forks source link

Add CUDA acceleration with cupy python library #4

Open Soarex16 opened 6 years ago

Soarex16 commented 6 years ago

and if CUDA is available write something like this:

if CUDA available:
    import cupy as np
else:
    import numpy as np
Soarex16 commented 6 years ago

Planning to add this after #5