chore: Assorted bash experiment cleanup

master
Sean McBride 3 years ago
parent dcc994b30e
commit e08cf72aa1

@ -227,16 +227,22 @@ __framework_sh__log_environment() {
git status git status
echo "" echo ""
echo "************"
echo "* Spec.json *"
echo "************"
cat "$(path_join "$__framework_sh__application_directory" ./spec.json)"
echo ""
echo "************" echo "************"
echo "* Makefile *" echo "* Makefile *"
echo "************" echo "************"
cat "$(path_join "$__framework_sh__path" ../../Makefile)" cat "$(path_join "$__framework_sh__path" ../../Makefile)"
echo "" echo ""
echo "**********" echo "**************"
echo "* Run.sh *" echo "* " "$0" " *"
echo "**********" echo "**************"
cat "$(path_join "$__framework_sh__application_directory" ./run.sh)" cat "$(path_join "$__framework_sh__application_directory" "$0")"
echo "" echo ""
echo "************" echo "************"

@ -36,7 +36,7 @@ percentiles_table_row() {
local -r table_file="${2:?table_file not set}" local -r table_file="${2:?table_file not set}"
check_file table_file check_file table_file
local -r row_label="${3:?row_label not set}" local -r row_label="${3:?row_label not set}"
local -r format_string="${4:-%1.4f}" local -r format_string="${4:-%1.2f}"
# Count the number of results # Count the number of results
local -i sample_size local -i sample_size

@ -17,7 +17,6 @@ source validate_dependencies.sh || exit 1
validate_dependencies awk hey jq validate_dependencies awk hey jq
# Please keep the element ordered alphabetically! # Please keep the element ordered alphabetically!
# declare -a workloads=(cifar10 ekf gocr lpd resize)
declare -a workloads=(cifar10 ekf gocr lpd resize) declare -a workloads=(cifar10 ekf gocr lpd resize)
declare -a multiples=(1.5 2.0 3.0 4.0) declare -a multiples=(1.5 2.0 3.0 4.0)
declare -ri percentile=50 declare -ri percentile=50

@ -1,3 +1,2 @@
SLEDGE_SCHEDULER=EDF SLEDGE_SCHEDULER=EDF
SLEDGE_DISABLE_PREEMPTION=false SLEDGE_DISABLE_PREEMPTION=false
SLEDGE_SIGALRM_HANDLER=TRIAGED

Loading…
Cancel
Save