You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
431 B
19 lines
431 B
from Util import ConfigUtil
|
|
from Util.SDUtil import *
|
|
|
|
# 打开配置文件
|
|
config = ConfigUtil.getConfig()
|
|
comfyui_address = config.get('comfyui', 'server_address')
|
|
webui_address = config.get('webui', 'webui_address')
|
|
|
|
# 清理GPU缓存
|
|
info = get_comfyui_used(comfyui_address)
|
|
print(info)
|
|
clear_comfyui_cache(comfyui_address)
|
|
info = get_comfyui_used(comfyui_address)
|
|
print(info)
|
|
|
|
# 清理一下sd
|
|
release_sd()
|
|
|