Christoph Holthaus
commited on
Commit
·
5cb071c
1
Parent(s):
a2232d8
memory is strange?
Browse files
app.py
CHANGED
|
@@ -25,6 +25,7 @@ It uses quantized models in gguf-Format and llama.cpp to run them.
|
|
| 25 |
Powered by ...'''
|
| 26 |
|
| 27 |
print(f"DEBUG: Memory free: {psutil.virtual_memory().free / (1024.0 ** 3)} GiB")
|
|
|
|
| 28 |
print(f"DEBUG: Memory: {psutil.virtual_memory().total / (1024.0 ** 3)} GiB")
|
| 29 |
|
| 30 |
import os
|
|
|
|
| 25 |
Powered by ...'''
|
| 26 |
|
| 27 |
print(f"DEBUG: Memory free: {psutil.virtual_memory().free / (1024.0 ** 3)} GiB")
|
| 28 |
+
print(f"DEBUG: Memory available: {psutil.virtual_memory().available / (1024.0 ** 3)} GiB")
|
| 29 |
print(f"DEBUG: Memory: {psutil.virtual_memory().total / (1024.0 ** 3)} GiB")
|
| 30 |
|
| 31 |
import os
|