blob: f2bf64bbcdd75f71bb1456346250a23550d7b1f2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
set -e
. $(dirname -- "$0")/env.sh
PYTHON_BIN="$($PYTHON -c "import sys; print(sys.executable)")"
cd $ROOT_PATH
doit clean_all
doit json_schema_repo c
cd $RUN_PATH
exec gdb --directory $ROOT_PATH \
--command $RUN_PATH/gdb-calculate.gdb \
--args $PYTHON_BIN -m opcut calculate \
--method forward_greedy_native \
--output $RUN_PATH/result.json \
$RUN_PATH/params.json
|