diff trunk/experiments/scripts/cnbh-syllables/feature_generation/run_aimcopy.sh @ 415:cac1f386e8d9

- New AIMCopy
author tomwalters
date Mon, 25 Oct 2010 00:30:22 +0000
parents 786166d87205
children
line wrap: on
line diff
--- a/trunk/experiments/scripts/cnbh-syllables/feature_generation/run_aimcopy.sh	Sun Oct 24 23:53:36 2010 +0000
+++ b/trunk/experiments/scripts/cnbh-syllables/feature_generation/run_aimcopy.sh	Mon Oct 25 00:30:22 2010 +0000
@@ -4,6 +4,7 @@
 AIMCOPY=`which AIMCopy`
 if [ "$AIMCOPY" == "" ]; then
   echo "Please build AIM-C and make AIMCopy available in the path"
+  exit -1
 fi
 
 set -e
@@ -32,7 +33,7 @@
 echo " tasks..."
 for ((c=1;c<=$MACHINE_CORES;c+=1)); do
   s=${splits[$element]}
-  AIMCopy -C $AIMCOPY_CONFIGURATION_FILE -D $FEATURES_DIR/aimcopy_config.out -S $s &
+  AIMCopy -C $AIMCOPY_CONFIGURATION_FILE -D $FEATURES_DIR/aimcopy_config.out -S $s -G $FEATURES_DIR/aimcopy_graph.dot &
   let element=element+1
 done