From 29086ea39393cfc19001532872a67afd431dc156 Mon Sep 17 00:00:00 2001 From: bbracker Date: Tue, 1 Mar 2022 03:48:31 +0000 Subject: [PATCH] checkpoint sweep script -- not sure if this deserves to be on the repo in the long run, but it is helpful --- linux/testvector-generation/checkpointSweep.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 linux/testvector-generation/checkpointSweep.sh diff --git a/linux/testvector-generation/checkpointSweep.sh b/linux/testvector-generation/checkpointSweep.sh new file mode 100755 index 000000000..74ed9ecf5 --- /dev/null +++ b/linux/testvector-generation/checkpointSweep.sh @@ -0,0 +1,5 @@ +for index in {450..500} +do + instrs=$(($index*1000000)) + echo "y" | nice -n 5 ./genCheckpoint.sh $instrs 0 +done