You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
source ../common.sh
|
|
|
|
timestamp=$(date +%s)
|
|
experiment_directory=$(pwd)
|
|
binary_directory=$(cd ../../bin && pwd)
|
|
|
|
# Start the runtime
|
|
|
|
PATH="$binary_directory:$PATH" LD_LIBRARY_PATH="$binary_directory:$LD_LIBRARY_PATH" sledgert "$experiment_directory/spec.json"
|