aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core
diff options
context:
space:
mode:
authorGravatar Xiaoming (Jason) Cui <xiaoming.cui@intel.com>2018-10-01 17:18:28 -0700
committerGravatar Xiaoming (Jason) Cui <xiaoming.cui@intel.com>2018-10-01 17:18:28 -0700
commit7dc5f7caa959c70d5ca948f7b0fc5abfea9a5935 (patch)
tree0878bf3337c14ca011b72022df37b6dd0bf884cc /tensorflow/core
parent9b160874e89aaaf0846fd587dbad55634ce88ea1 (diff)
Minor changes, hanged CHECK_GE to DCHECK_GE due to code policy change
Diffstat (limited to 'tensorflow/core')
-rw-r--r--tensorflow/core/common_runtime/process_util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/core/common_runtime/process_util.cc b/tensorflow/core/common_runtime/process_util.cc
index 4570496637..e1dc08d645 100644
--- a/tensorflow/core/common_runtime/process_util.cc
+++ b/tensorflow/core/common_runtime/process_util.cc
@@ -65,7 +65,7 @@ int32 NumInterOpThreadsFromSessionOptions(const SessionOptions& options) {
#ifdef _OPENMP
mkl_intra_op = omp_get_max_threads();
#endif // _OPENMP
- CHECK_GE(mkl_intra_op, 1);
+ DCHECK_GE(mkl_intra_op, 1);
const int32 mkl_inter_op = std::max(
(port::NumSchedulableCPUs() + mkl_intra_op - 1) / mkl_intra_op, 2);
VLOG(0)