diff --git a/README.md b/README.md index cdbd0fa7e..e42dacd9e 100644 --- a/README.md +++ b/README.md @@ -298,7 +298,7 @@ check [ChangeLog](CHANGELOG.md) for when feature was first introduced as it will ### Sponsors
-Allan GrantBrent OzarMatthew RunoSalad Technologiesa.v.mantzarisRobert McCurdy +Allan GrantBrent OzarMatthew Runoa.v.mantzarisRobert McCurdy

diff --git a/html/logo-bg-6.jpg b/html/logo-bg-6.jpg index 88c7cb446..5e001eb2b 100644 Binary files a/html/logo-bg-6.jpg and b/html/logo-bg-6.jpg differ diff --git a/modules/devices.py b/modules/devices.py index 056e3a7a8..e703a0b50 100644 --- a/modules/devices.py +++ b/modules/devices.py @@ -166,7 +166,7 @@ def torch_gc(force=False): after = { 'gpu': mem.get('gpu', {}).get('used', 0), 'ram': mem.get('ram', {}).get('used', 0), 'retries': mem.get('retries', 0), 'oom': mem.get('oom', 0) } utilization = { 'gpu': used_gpu, 'ram': used_ram, 'threshold': threshold } results = { 'collected': collected, 'saved': saved } - log.debug(f'GC: utilization={utilization} gc={results} beofre={before} after={after} device={torch.device(get_optimal_device_name())} fn={sys._getframe(1).f_code.co_name} time={round(t1 - t0, 2)}') # pylint: disable=protected-access + log.debug(f'GC: utilization={utilization} gc={results} before={before} after={after} device={torch.device(get_optimal_device_name())} fn={sys._getframe(1).f_code.co_name} time={round(t1 - t0, 2)}') # pylint: disable=protected-access def set_cuda_sync_mode(mode):