diff --git a/paddle/fluid/operators/cinn/cinn_launch_op.h b/paddle/fluid/operators/cinn/cinn_launch_op.h index dc740e215d69d1b663bf560058028524a2dc1180..71cfcada4042ac9ac9b1cbad45c88600edaf99e3 100644 --- a/paddle/fluid/operators/cinn/cinn_launch_op.h +++ b/paddle/fluid/operators/cinn/cinn_launch_op.h @@ -142,7 +142,7 @@ class CinnLaunchOpKernel : public framework::OpKernel { VLOG(4) << "Execute the runtime program by InterpreterCore"; auto* interpreter_core = launch_context->InitializeInterpreterCore( place, const_cast(&scope)); - interpreter_core->Run({}); + interpreter_core->Run({}, false); } else { platform::RecordEvent record_event_4( "Step 4. Execute the runtime graph by PE.");