ComfyUI/custom_nodes/example_folder/utils.py

4 lines
119 B
Python
Raw Normal View History

2023-02-14 15:20:30 +00:00
import torch
def waste_cpu_resource():
x = torch.rand(1, 1e6, dtype=torch.float64).cpu()
return x.numpy()[0, 1]