Open pep-pig opened 5 years ago
@vonlippmann Are you running your code from command line, or from an IDE? If running from an IDE, try running from the command line, just check if it still reproduces the issue. I would also suggest for you to download the sources of aparapi, aparapi-native, aparapi-jni and recompile them in your local machine. At least recompiling aparapi.
I tried but failed. I suddenly think maybe my project is not suitable for GPU computing. So i given up for trying aparapi temporarily. Thank you all the same!
Neural networks can be very suitable for you but only for certain NN topographies. Usually anytime the onnection density is sparse but the layer size if very large. Small neural networks in my expiernce don't show much improvement (I mostly use aparapi for machine learning including neural networks).
On Mon, Feb 25, 2019, 2:15 PM fengjb notifications@github.com wrote:
I tried but failed. I suddenly think maybe my project is not suitable for GPU computing. So i given up for trying aparapi temporarily. Thank you all the same!
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/Syncleus/aparapi/issues/145#issuecomment-467006774, or mute the thread https://github.com/notifications/unsubscribe-auth/AWNYb3KpqTWgI8A4k4n4V9mOdV7K_Ablks5vQ-HzgaJpZM4bPfTI .
Neural networks can be very suitable for you but only for certain NN topographies. Usually anytime the onnection density is sparse but the layer size if very large. Small neural networks in my expiernce don't show much improvement (I mostly use aparapi for machine learning including neural networks). … On Mon, Feb 25, 2019, 2:15 PM fengjb @.***> wrote: I tried but failed. I suddenly think maybe my project is not suitable for GPU computing. So i given up for trying aparapi temporarily. Thank you all the same! — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub <#145 (comment)>, or mute the thread https://github.com/notifications/unsubscribe-auth/AWNYb3KpqTWgI8A4k4n4V9mOdV7K_Ablks5vQ-HzgaJpZM4bPfTI .
CNN can be accelerated by GPU indeed , but my project is not about deeplearning now. My project is currently about topology optimization, there are many logic control in my code ,the main numeric computing is to solve a large linear system of equations which may be difficult to simply use aparapi to realize GPU computing.
Systems of equations are actually very well suited for gpus too usually. Particularly if their linear equations as I've seen the matric operations done on gpus with a good deal of speed up. I can't speak to your specific case however.
On Mon, Feb 25, 2019, 2:46 PM fengjb notifications@github.com wrote:
Neural networks can be very suitable for you but only for certain NN topographies. Usually anytime the onnection density is sparse but the layer size if very large. Small neural networks in my expiernce don't show much improvement (I mostly use aparapi for machine learning including neural networks). … <#m7946220945276250668> On Mon, Feb 25, 2019, 2:15 PM fengjb @.***> wrote: I tried but failed. I suddenly think maybe my project is not suitable for GPU computing. So i given up for trying aparapi temporarily. Thank you all the same! — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub <#145 (comment) https://github.com/Syncleus/aparapi/issues/145#issuecomment-467006774>, or mute the thread https://github.com/notifications/unsubscribe-auth/AWNYb3KpqTWgI8A4k4n4V9mOdV7K_Ablks5vQ-HzgaJpZM4bPfTI .
CNN can be accelerated by GPU indeed , but my project is not about deeplearning now. My project is currently about topology optimization, there are many logic control in my code ,the main numeric computing is to solve a large linear system of equations which may be difficult to simply use aparapi to realize GPU computing.
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/Syncleus/aparapi/issues/145#issuecomment-467016538, or mute the thread https://github.com/notifications/unsubscribe-auth/AWNYb7zSvKfL0e47iM94dkJ_rJGwHLSjks5vQ-k2gaJpZM4bPfTI .
This is my first time to try Aparapi. This is my development enviroment info:
I input the command nvcc -version in power shell,and got info:
The test code:
And the error info is:
How can this problem occurred? is there anything wrong with my devolopment enviroment? or there is something wrong in my testcode?