update .gitignore; minor script update

This commit is contained in:
Daniel Povey 2015-08-01 14:26:49 -04:00
Родитель 7e1b3f83c2
Коммит 60c2509614
2 изменённых файлов: 3 добавлений и 2 удалений

1
.gitignore поставляемый
Просмотреть файл

@ -6,6 +6,7 @@
# emacs saves
[#]*[#]
.[#]*
*~
# Compiled Dynamic libraries

Просмотреть файл

@ -31,14 +31,14 @@ If you want to use GPUs (and have them), go to src/, and configure and make on a
where "nvcc" is installed. Otherwise, call this script with --use-gpu false
EOF
fi
parallel_opts="-l gpu=1"
parallel_opts="--gpu 1"
num_threads=1
minibatch_size=512
# the _a is in case I want to change the parameters.
else
num_threads=16
minibatch_size=128
parallel_opts="-pe smp $num_threads"
parallel_opts="--num-threads $num_threads"
fi
local/online/run_nnet2_common.sh --stage $stage || exit 1;