| tcpumodel.sh - numeric - C++ library with numerical algorithms | |
| git clone git://src.adamsgaard.dk/numeric | |
| Log | |
| Files | |
| Refs | |
| LICENSE | |
| --- | |
| tcpumodel.sh (130B) | |
| --- | |
| 1 #!/bin/sh | |
| 2 | |
| 3 # Find the model name of the system CPU | |
| 4 cat /proc/cpuinfo | grep "model name" | tail -1 | cut -f 1 -d ':' --comp… |