You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run MLP.py ,GMF.py or ,NeuMF.py with my GPU (GTX 1080), the memory of which is fulled while the volatile GPU-Util are always around 20%. And the time-spending with GPU is slower than CPU (intel i5)。
in the codes of above, np.array(user_input), np.array(item_input),np.array(labels) is runing on the CPU but GPU.
Therefore, the useage of GPU-Util can not raise.
The text was updated successfully, but these errors were encountered:
I have experienced the same slower training times with a GPU. Investigating the execution with py-spy, it seems that a big chunk of the training time is spent building user_input, item_input and labels.
When I run MLP.py ,GMF.py or ,NeuMF.py with my GPU (GTX 1080), the memory of which is fulled while the volatile GPU-Util are always around 20%. And the time-spending with GPU is slower than CPU (intel i5)。
I guess the problem are caused by
in the codes of above, np.array(user_input), np.array(item_input),np.array(labels) is runing on the CPU but GPU.
Therefore, the useage of GPU-Util can not raise.
The text was updated successfully, but these errors were encountered: