You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@joshua.apache.org by mj...@apache.org on 2016/10/25 13:12:03 UTC

incubator-joshua git commit: turned off parallelizing GIZA directions

Repository: incubator-joshua
Updated Branches:
  refs/heads/master 0819b9bb9 -> 765e069e4


turned off parallelizing GIZA directions


Project: http://git-wip-us.apache.org/repos/asf/incubator-joshua/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-joshua/commit/765e069e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-joshua/tree/765e069e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-joshua/diff/765e069e

Branch: refs/heads/master
Commit: 765e069e43a1785e39312b24559e848b6bf5e043
Parents: 0819b9b
Author: Matt Post <po...@cs.jhu.edu>
Authored: Tue Oct 25 09:11:58 2016 -0400
Committer: Matt Post <po...@cs.jhu.edu>
Committed: Tue Oct 25 09:11:58 2016 -0400

----------------------------------------------------------------------
 scripts/training/paralign.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/765e069e/scripts/training/paralign.pl
----------------------------------------------------------------------
diff --git a/scripts/training/paralign.pl b/scripts/training/paralign.pl
index c8cb10d..d41003a 100755
--- a/scripts/training/paralign.pl
+++ b/scripts/training/paralign.pl
@@ -39,7 +39,7 @@ while (my $chunkno = <>) {
   system("mkdir","-p", $chunkdir);
 
   if ($args{aligner} eq "giza") {
-    run_giza($chunkdir, $chunkno, $args{num_threads} > 1);
+    run_giza($chunkdir, $chunkno, 0);
   } elsif ($args{aligner} eq "berkeley") {
     run_berkeley_aligner($chunkdir, $chunkno, $aligner_conf);
   } elsif ($args{aligner} eq "jacana") {