summaryrefslogtreecommitdiff
path: root/common/scripts/lmbench.sh
blob: e985f1d686722d0e060d93ffc83a0ff284407ceb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

echo "BEGIN LMBENCH"
for i in $(seq 1 1000)
do
    echo "lat_ctx iteration number $i "
    /usr/bin/lat_ctx  -s 64 2
    /usr/bin/lat_ctx  -s 64 8
    /usr/bin/lat_ctx  -s 64 16
    /usr/bin/lat_ctx  -s 64 20
done
echo "END LMBENCH"