lnd212 238bf88b72 BIG UPDATE
Updated python to 3.10
Updated diffusers to 0.4.1
2022-10-09 17:27:10 +04:00

14 lines
155 B
Python

import gc
def start():
gc.collect(0)
gc.collect(1)
gc.collect(2)
l = []
l.append(l)
del l
gc.collect(2)
gc.collect()
start()