#!/bin/bash
#
# if blender is randomly freezing run this, does not persist over reboot
# use crontab;
#
# @reboot /root/readystart.sh
#
rt=$(cat /sys/class/drm/card0/engine/rcs0/preempt_timeout_ms)
echo "chainging ms from $rt"
echo 10000 | sudo tee /sys/class/drm/card0/engine/rcs0/preempt_timeout_ms
nt=$(cat /sys/class/drm/card0/engine/rcs0/preempt_timeout_ms)
echo "to $nt"
# linux clocks gpu more than windows making it fall off the bus?
# set nvidia clock limit cap~
nvidia-smi -lgc 300,1500