aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow
diff options
context:
space:
mode:
authorGravatar Suharsh Sivakumar <suharshs@google.com>2017-04-26 17:00:54 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-04-26 18:07:15 -0700
commited37842fe4b1a83922c0042f59775968f350dc8a (patch)
tree2695c5e603d1f189003e5ae73274ad6c3d03e4b0 /tensorflow
parent54b5650eb4445548eb1d0e98346e4563b3db0f10 (diff)
Lower number of parallel jobs to prevent OOM.
Change: 154371550
Diffstat (limited to 'tensorflow')
-rw-r--r--tensorflow/contrib/makefile/build_helper.subr2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/contrib/makefile/build_helper.subr b/tensorflow/contrib/makefile/build_helper.subr
index f0452944e2..d58b2c0a9b 100644
--- a/tensorflow/contrib/makefile/build_helper.subr
+++ b/tensorflow/contrib/makefile/build_helper.subr
@@ -31,7 +31,7 @@ get_cpu_count() {
}
get_job_count() {
- echo $(($(get_cpu_count) * 2))
+ echo $(($(get_cpu_count)))
}
make_host_protoc() {