Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHieu Hoang <s0565741@odin.inf.ed.ac.uk>2014-04-04 14:42:16 +0400
committerHieu Hoang <s0565741@odin.inf.ed.ac.uk>2014-04-04 14:42:16 +0400
commitcb8533b0f7025c90c57b6e8eb692bdc0aa76258b (patch)
tree748afac829d23b1154e078eba41a5a892b5690c6 /contrib/other-builds/extract-mixed-syntax
parent831e52119cae47efeb08663cac87b05ecb116b5c (diff)
comment out debugging message
Diffstat (limited to 'contrib/other-builds/extract-mixed-syntax')
-rwxr-xr-xcontrib/other-builds/extract-mixed-syntax/learnable/run-parallel.perl5
1 files changed, 3 insertions, 2 deletions
diff --git a/contrib/other-builds/extract-mixed-syntax/learnable/run-parallel.perl b/contrib/other-builds/extract-mixed-syntax/learnable/run-parallel.perl
index c1e87b54f..fa271f9ad 100755
--- a/contrib/other-builds/extract-mixed-syntax/learnable/run-parallel.perl
+++ b/contrib/other-builds/extract-mixed-syntax/learnable/run-parallel.perl
@@ -2,8 +2,9 @@
my $iniPath = $ARGV[0];
-my $SPLIT_LINES = 100;
-my $lineCount = 1000;
+my $SPLIT_LINES = 200;
+my $lineCount = `cat source | wc -l`;
+print STDERR "lineCount=$lineCount \n";
for (my $startLine = 0; $startLine < $lineCount; $startLine += $SPLIT_LINES) {
my $endLine = $startLine + $SPLIT_LINES;