-
Notifications
You must be signed in to change notification settings - Fork 25.2k
Closed
Labels
Description
When I run this script:
import torch
a = torch.rand(1000, 10000)
while True:
print('.')
a.tanh_()
and then open htop
, I expect to see all 8 cores running at 100%, but only 4 seem to be running? :
In addition, those cores that are running, are only running at ~30-40%.
(Note that I'm not submitting a fix for this, just flagging it)