From cc31681687b5af35d53ce4df3f3eb4bdbf4fa84b Mon Sep 17 00:00:00 2001 From: chengduo Date: Wed, 24 Apr 2019 11:49:58 +0800 Subject: [PATCH] use fast executor as default (#17044) 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 6a8d99f900c..4f074323f9b 100644 --- a/paddle/fluid/framework/details/execution_strategy.h +++ b/paddle/fluid/framework/details/execution_strategy.h @@ -29,7 +29,7 @@ struct ExecutionStrategy { // this will loss 15%+ performance. // Please be aware about this parameters. size_t num_iteration_per_drop_scope_{1}; - ExecutorType type_{kDefault}; + ExecutorType type_{kExperimental}; bool dry_run_{false}; size_t num_iteration_per_run_{1}; // only use with async_ssa_graph_executor // and pyreader with data queue -- GitLab