├── .gitignore ├── LICENSE ├── README.md ├── scripts └── gpu_temperature_protection.py └── temperature_sensor_modules ├── amd_rocm_smi.py ├── nvidia_smi.py └── open_hardware_monitor.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w-e-w/stable-diffusion-webui-GPU-temperature-protection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w-e-w/stable-diffusion-webui-GPU-temperature-protection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w-e-w/stable-diffusion-webui-GPU-temperature-protection/HEAD/README.md -------------------------------------------------------------------------------- /scripts/gpu_temperature_protection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w-e-w/stable-diffusion-webui-GPU-temperature-protection/HEAD/scripts/gpu_temperature_protection.py -------------------------------------------------------------------------------- /temperature_sensor_modules/amd_rocm_smi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w-e-w/stable-diffusion-webui-GPU-temperature-protection/HEAD/temperature_sensor_modules/amd_rocm_smi.py -------------------------------------------------------------------------------- /temperature_sensor_modules/nvidia_smi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w-e-w/stable-diffusion-webui-GPU-temperature-protection/HEAD/temperature_sensor_modules/nvidia_smi.py -------------------------------------------------------------------------------- /temperature_sensor_modules/open_hardware_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w-e-w/stable-diffusion-webui-GPU-temperature-protection/HEAD/temperature_sensor_modules/open_hardware_monitor.py --------------------------------------------------------------------------------