Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions paddle/fluid/eager/to_static/run_program_op_node.h
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ inline void RunProgramAPI(
PADDLE_GET_CONST(bool, attrs.at("use_interpretorcore"));

if (use_interpretorcore) {
VLOG(2) << "RunProgramOp use interpretercore to execute program.";
VLOG(0) << "RunProgramOp use interpretercore to execute program.";

auto input_names = details::GetTensorsName(x);
auto output_names = details::GetTensorsName(out);
Expand Down Expand Up @@ -467,7 +467,7 @@ inline void RunProgramGradAPI(
auto place = egr::Controller::Instance().GetExpectedPlace();

if (use_interpretorcore) {
VLOG(2) << "RunProgramGradOp use interpretercore to execute program.";
VLOG(0) << "RunProgramGradOp use interpretercore to execute program.";

auto *forward_global_block = PADDLE_GET_CONST(
paddle::framework::BlockDesc *, attrs.at("forward_global_block"));
Expand Down