From 68b86d666521178f1b994c6c86a5539e35f66a52 Mon Sep 17 00:00:00 2001 From: minqiyang Date: Mon, 24 Dec 2018 16:46:01 +0800 Subject: [PATCH] Change default value to align with the original react test=develop --- paddle/fluid/framework/details/execution_strategy.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paddle/fluid/framework/details/execution_strategy.h b/paddle/fluid/framework/details/execution_strategy.h index 15c496130c2..37b07e57363 100644 --- a/paddle/fluid/framework/details/execution_strategy.h +++ b/paddle/fluid/framework/details/execution_strategy.h @@ -25,7 +25,7 @@ struct ExecutionStrategy { size_t num_threads_{0}; bool use_cuda_{true}; bool allow_op_delay_{false}; - size_t num_iteration_per_drop_scope_{100}; + size_t num_iteration_per_drop_scope_{1}; ExecutorType type_{kDefault}; bool dry_run_{false}; }; -- GitLab