https://github.com/mymmrac/chipper
Small tool for testing CPUs
https://github.com/mymmrac/chipper
cli cpu-benchmark go
Last synced: 11 months ago
JSON representation
Small tool for testing CPUs
- Host: GitHub
- URL: https://github.com/mymmrac/chipper
- Owner: mymmrac
- License: mit
- Created: 2022-01-29T21:51:25.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-31T17:30:49.000Z (over 4 years ago)
- Last Synced: 2025-06-06T00:43:02.788Z (about 1 year ago)
- Topics: cli, cpu-benchmark, go
- Language: Go
- Homepage:
- Size: 555 KB
- Stars: 6
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 👾 Chipper
[](https://github.com/mymmrac/chipper/actions/workflows/ci.yaml)
[](https://goreportcard.com/report/github.com/mymmrac/chipper)
Chipper is a small tool for testing CPUs.
It runs multiple tests and measures execution time. Based on that time, you can relatively compare CPUs.
> Note: Keep in mind that results may vary from run to run, and results don't show the real picture of which CPU is
> better. Speed of terminal, RAM, or even already running processes may dramatically affect results.
## 📋 Available tests
- Fibonacci sequence (`1, 1, 2, 3, 5`)
- Factorial (`1, 2, 6, 24, 120`)
- Trigonometry (`atan(tan(atan(... + e)))`)
## ⚡️ Install & Run
Install using `go install`
```shell
go install github.com/mymmrac/chipper@latest
```
> Note: Make sure to add `$GOPATH/bin` to `$PATH`
Run
```shell
chipper
```
Or run in `simple-mode` without pretty TUI (maybe slightly faster)
```shell
chipper -s
```