Skip to content
TriTech edited this page Feb 28, 2025 · 6 revisions

CoreBench Wiki (sorta)

About CoreBench

  • CoreBench is a program developed by TriTech that aims to determine the performance of your system with real-world simulations and calculations.
  • It is designed for use on Linux-based systems primarily, as on Windows and other untested operating systems there may be many conflicts that make it completely impractical and non-representative of true performance.

Installation

CoreBench has dependencies, all listed within requirements.txt
You can install these with:

pip install -r requirements.txt

In the case of encountering an error with externally managed environment make a new virtual environment, or install with sudo. I recommend making a virtual environment because it can prevent conflicts with other applications.

sudo apt install python3-venv

Then create the venv...

python -m venv CoreBench

Activate...

source CoreBench/bin/activate

Install the packages...

pip install -r requirements.txt

And start benchmarking!

python3 corebench.py

To deactivate, just run

deactivate

mind. blown.

Clone this wiki locally