summaryrefslogtreecommitdiff
path: root/salis
diff options
context:
space:
mode:
authorPaul Oliver <contact@pauloliver.dev>2024-09-13 15:14:30 -0700
committerPaul Oliver <contact@pauloliver.dev>2024-09-13 15:14:30 -0700
commit6edade339744b6631717242b0111f5dc1ae79194 (patch)
tree82002e46642a313a89982b78ce539eebe15d8987 /salis
parent7f56d951fe4ad6749e68ac860ea05f572b6d04ed (diff)
Allow cloning ancestor multiple times on each coreHEADmaster
Diffstat (limited to 'salis')
-rwxr-xr-xsalis2
1 files changed, 2 insertions, 0 deletions
diff --git a/salis b/salis
index b02daa2..a493861 100755
--- a/salis
+++ b/salis
@@ -75,6 +75,7 @@ options=(
"A|anc-def|ANC|`anc_def_desc`|||bench:new"
"a|arch|ARCH|VM architecture|${arches}|dummy|bench:new"
"b|steps|N|number of steps to run in benchmark||0x1000000|bench"
+ "C|clones|N|number of ancestor clones on each core||1|bench:new"
"c|cores|N|number of simulator cores||2|bench:new"
"F|muta-flip||cosmic rays flip bits instead of randomizing whole bytes||false|bench:new"
"f|force||overwrite existing simulation of given name||false|new"
@@ -325,6 +326,7 @@ bench|new)
bcmd="${bcmd} -DANC_LIST=`fquote "${anc_list::-1}"`"
bcmd="${bcmd} -DANC_HALF=`[[ ${opt_half} == true ]] && echo 1 || echo 0`"
+ bcmd="${bcmd} -DANC_CLONES=${opt_clones}"
;;
esac