Skip to content
Snippets Groups Projects
Commit 4a34bd52 authored by Mayank Rathee's avatar Mayank Rathee
Browse files

Updated run scripts

parent 9cbdedab
No related branches found
No related tags found
No related merge requests found
#!/bin/sh #!/bin/sh
./Porthos.out 0 files/addresses if [ $# -lt 1 ]
then
echo "Please specify the binary to run."
echo "Usage: ./party0.sh [SqNetImgNet/ResNet50/DenseNet121] < [Path to input file]"
exit 1
elif [ $# -gt 1 ]
then
echo "Incorrect usage. Only requires one argument."
echo "Usage: ./party0.sh [SqNetImgNet/ResNet50/DenseNet121] < [Path to input file]"
exit 1
fi
./src/build/bin/$1 0 ../../../files/addresses
#!/bin/sh #!/bin/sh
./Porthos.out 1 files/addresses if [ $# -lt 1 ]
then
echo "Please specify the binary to run."
echo "Usage: ./party1.sh [SqNetImgNet/ResNet50/DenseNet121] < [Path to weights file]"
exit 1
elif [ $# -gt 1 ]
then
echo "Incorrect usage. Only requires one argument."
echo "Usage: ./party1.sh [SqNetImgNet/ResNet50/DenseNet121] < [Path to weights file]"
exit 1
fi
./src/build/bin/$1 1 ../../../files/addresses
#!/bin/sh #!/bin/sh
./Porthos.out 2 files/addresses if [ $# -lt 1 ]
then
echo "Please specify the binary to run."
echo "Usage: ./party2.sh [SqNetImgNet/ResNet50/DenseNet121]"
exit 1
elif [ $# -gt 1 ]
then
echo "Incorrect usage. Only requires one argument."
echo "Usage: ./party2.sh [SqNetImgNet/ResNet50/DenseNet121]"
exit 1
fi
./src/build/bin/$1 2 ../../../files/addresses
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment