Skip to content

Commit 2018a26

Browse files
committed
backup
1 parent 5369a76 commit 2018a26

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# requirements.txt
21
gitpython
32
packaging
4-
pandas
3+
pandas
4+
psutil

scripts/run_benchmarks.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,14 @@ def test_dir(path, prefix: str):
5050
return result
5151

5252

53+
import platform
54+
import psutil
55+
5356
if __name__ == "__main__":
5457
print('CPython:', str(sys.version).replace('\n', ''))
5558
print('System:', '64-bit' if sys.maxsize > 2**32 else '32-bit')
59+
print('CPU:', platform.processor())
60+
print('RAM:', f"{psutil.virtual_memory().total / (1024 ** 3):.2f} GB")
5661

5762
data = []
5863

0 commit comments

Comments
 (0)