Skip to content

Commit

Permalink
Add missing configuration parameters #30 #31 and remove unnecessary t…
Browse files Browse the repository at this point in the history
…emporal files
  • Loading branch information
hkanezashi committed Feb 4, 2020
1 parent 4f03afe commit 1cb3a0a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/run_batch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ fi

CONF_JSON=$1
OUTPUT_LOG=${2:-/dev/null}
EDGE_RATIO=${3:-0.0}

echo "Configuration JSON file: ${CONF_JSON}"
echo "Output Log file: ${OUTPUT_LOG}"

time python3 scripts/transaction_graph_generator.py "${CONF_JSON}" 2>&1 | tee "${OUTPUT_LOG}"
time python3 scripts/transaction_graph_generator.py "${CONF_JSON}" "${EDGE_RATIO}" 2>&1 | tee "${OUTPUT_LOG}"
time sh scripts/run_AMLSim.sh "${CONF_JSON}" 2>&1 | tee -a "${OUTPUT_LOG}"
time python3 scripts/convert_logs.py "${CONF_JSON}" 2>&1 | tee -a "${OUTPUT_LOG}"

Expand Down

0 comments on commit 1cb3a0a

Please sign in to comment.