1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-11 09:29:29 +00:00
mpv/TOOLS/benchmark-gab/variables
gabucino 4c4675a2dc v0.91
small misc fixes
100l fix, for xv+xmga benchmarks, only VC was benchmarked, now total time
everywhere


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7185 b3059339-0415-0410-9bf9-f77b7e298cf2
2002-08-31 08:16:44 +00:00

17 lines
596 B
Bash
Executable File

#!/bin/sh
export PATH=$PATH:/sbin:/usr/local/bin:/usr/local/sbin:/usr/X11R6/bin
VENDOR="`cat /proc/cpuinfo | grep vendor_id | cut -c 13-`"
MODEL="`cat /proc/cpuinfo | grep "model name" | cut -c 14-`"
MHZ="`cat /proc/cpuinfo | grep MHz | cut -c 12-14` MHz"
MEMORY="`cat /proc/meminfo | grep MemTotal | awk '{print $2}'` Kb"
BUILD="`echo $VENDOR $MODEL $MHZ | tr [\ ] [_]`"
VGA="`lspci | grep VGA | cut -c 36-`"
export LOGFILE="`pwd`/log-$BUILD-`date +\"%Y-%m-%d\"`"
export COMPILEOPTIONS="--enable-runtime-cpudetection"
function wrtlog {
echo "[ `date +\"%Y-%m-%d %T\"` ] $*" >> "$LOGFILE"
}