"docs/tools/vscode:/vscode.git/clone" did not exist on "1011377c0dc6aaf17e655725e430fa499d76f636"
utils.py 119 Bytes
Newer Older
1
2
3
4
import torch
def waste_cpu_resource():
    x = torch.rand(1, 1e6, dtype=torch.float64).cpu()
    return x.numpy()[0, 1]