diff --git a/paddle/fluid/framework/new_executor/interpreter/dependency_builder.cc b/paddle/fluid/framework/new_executor/interpreter/dependency_builder.cc index 4d005d0e883293fa274b4abe5a831f0e271406dd..7f4b52123fbce5ba46a09e21e25bfa34ad034e66 100644 --- a/paddle/fluid/framework/new_executor/interpreter/dependency_builder.cc +++ b/paddle/fluid/framework/new_executor/interpreter/dependency_builder.cc @@ -273,20 +273,18 @@ void DependencyBuilder::AddDependencyForCommunicationOp() { // make sure that the random op is scheduled sequentially void DependencyBuilder::AddDependencyForRandomOp() { - const std::set random_op_set = { - "bernoulli", - "poisson", - "multinomial", - "gaussian_random", - "truncated_gaussian_random", - "uniform_random", - "randint", - "randperm", - "exponential", - "sampling_id" - "dropout", - "class_center_sample", - }; + const std::set random_op_set = {"bernoulli", + "poisson", + "multinomial", + "gaussian_random", + "truncated_gaussian_random", + "uniform_random", + "randint", + "randperm", + "exponential", + "sampling_id", + "dropout", + "class_center_sample"}; int dependence_op_idx = -1; for (size_t op_idx = 0; op_idx < op_num_; ++op_idx) { diff --git a/python/paddle/fluid/executor.py b/python/paddle/fluid/executor.py index 218ee94a22beaa75f9f062ee515aeaf69657ae62..440d2bfeb8e3153ecc32cf8d0807e30b5aee8bbf 100755 --- a/python/paddle/fluid/executor.py +++ b/python/paddle/fluid/executor.py @@ -1516,6 +1516,8 @@ class Executor(object): program._compile(scope, self.place) ir_graph = framework.IrGraph(program._graph) inner_program = ir_graph.to_program() + if hasattr(program._program, 'lr_sheduler'): + inner_program.lr_sheduler = program._program.lr_sheduler # print(f"Program after convert:\n {inner_program}", flush=True) logging.warning( "FLAGS_USE_STANDALONE_EXECUTOR and FLAGS_CONVERT_GRAPH_TO_PROGRAM is set to 1. Graph will be converted to Program and executed using new executor."