You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Motivation
It currently uses os.tmpdir() (which is /tmp) to write all the output. This is a problem because that's a tmpfs by default, meaning that it's RAM-backed storage which wastes system RAM as ChaiNNer fills it with processed temp-images:
tmpfs on /tmp type tmpfs (rw,nosuid,nodev,seclabel,size=32767284k,nr_inodes=1048576,inode64)
It's also a privacy problem, because as the tmpfs fills up, it can page to swap.
Motivation
It currently uses
os.tmpdir()
(which is/tmp
) to write all the output. This is a problem because that's a tmpfs by default, meaning that it's RAM-backed storage which wastes system RAM as ChaiNNer fills it with processed temp-images:tmpfs on /tmp type tmpfs (rw,nosuid,nodev,seclabel,size=32767284k,nr_inodes=1048576,inode64)
It's also a privacy problem, because as the tmpfs fills up, it can page to swap.
Description
A new option in the settings:
ChaiNNer -> Settings -> Environment -> Temp Directory:
/tmp
(showos.tmpdir()
value here)(...)
Alternatives
There doesn't seem to be any solutions at the moment.
The text was updated successfully, but these errors were encountered: