2020-06-10 14:59:58 +00:00
|
|
|
#
|
|
|
|
# Default variables that we want to use in all of our scripts
|
|
|
|
#
|
2020-06-10 11:53:11 +00:00
|
|
|
export DOWNLOADS=~/Downloads
|
|
|
|
export WORKDIR=~/rpi-hpl-workdir
|
2020-06-10 13:50:53 +00:00
|
|
|
export RESULTSDIR=${WORKDIR}/results
|
2020-06-10 11:53:11 +00:00
|
|
|
export SCRIPTSDIR=${PWD}
|
|
|
|
export SERVICES="snap.lxd.daemon snap.lxd.daemon.unix.socket postfix systemd-timesyncd wpa_supplicant snapd snapd.apparmor.service systemd-resolved snapd.service snapd.socket"
|
|
|
|
|
2020-06-10 14:59:58 +00:00
|
|
|
#
|
2020-06-10 11:53:11 +00:00
|
|
|
# Flags based on https://en.wikichip.org/wiki/arm_holdings/microarchitectures/cortex-a72
|
2020-06-10 14:59:58 +00:00
|
|
|
#
|
2020-06-10 11:53:11 +00:00
|
|
|
export COMMON_FLAGS="-mtune=cortex-a72"
|
|
|
|
|
2020-06-10 14:59:58 +00:00
|
|
|
#
|
|
|
|
# This variable masks the fact if you want to write to output file or not
|
|
|
|
# With a system that has SD card that is non-performant, then this value
|
|
|
|
# with 1 may slow the overall HPL benchmark down
|
|
|
|
#
|
|
|
|
WRITE_OUT_FILE=0
|
|
|
|
|