diff --git a/zcash.test1.sh b/zcash.test1.sh new file mode 100755 index 0000000..f3ead54 --- /dev/null +++ b/zcash.test1.sh @@ -0,0 +1,31 @@ +#!/bin/bash + +### these are for AWS FPGA config ### +cd $AWS_FPGA_REPO_DIR && source sdk_setup.sh +echo "always be sure to source the sdk_setup.sh" +echo " " + +### prepare FPGA image ### +echo -n "Do you need clear and reload the fpga AFI (Y/N)" +read input +if [[ $input = Y ]]; then + echo "clear the fpga AFI..." + sudo fpga-clear-local-image -S -0 + echo " " + echo "reload the fpga AFI..." + sleep 3 + sudo fpga-load-local-image -S 0 -I agfi-0ef71fd274fd5b46e + echo "If FPGA image load correctlly, it is ready for the test" +else + echo "Now you should be ready for FPGA test" +fi + +### run FPGA test ### +cd ~/aws-fpga/hdk/cl/developer_designs/cl_zcash/software/runtime +echo "Ready for run Zcash FPGA test!" + +sleep 2 +echo " " +sleep 2 +echo " " +sudo ./test_zcash diff --git a/zcash_test.sh b/zcash_test.sh new file mode 100755 index 0000000..bb87be7 --- /dev/null +++ b/zcash_test.sh @@ -0,0 +1,20 @@ +### these are for AWS FPGA config ### +cd $AWS_FPGA_REPO_DIR && source sdk_setup.sh +echo "always be sure to source the sdk_setup.sh" +echo " " +echo "clear the fpga AFI..." +sudo fpga-clear-local-image -S -0 +echo " " +echo "reload the fpga AFI..." +sleep 3 +sudo fpga-load-local-image -S 0 -I agfi-0ef71fd274fd5b46e +echo "If FPGA image load correctlly, it is ready for the test" + +cd ~/aws-fpga/hdk/cl/developer_designs/cl_zcash/software/runtime +echo "Ready for run Zcash FPGA test!" + +sleep 2 +echo " " +sleep 2 +echo " " +sudo ./test_zcash