I’m still a new python learner, and when I tried to execute this code,
I have this error.
please, help me
I’m still a new python learner, and when I tried to execute this code,
Looks like your norm
variable is on GPU but the graph g
is on CPU. As the message said, you will need to call g.to(device)
before assigning.
For tensorflow, you can try
g = g.to('/GPU:0')
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.