diff --git a/paddle/fluid/framework/new_executor/instruction/control_flow/if_instruction.cc b/paddle/fluid/framework/new_executor/instruction/control_flow/if_instruction.cc index 0f3f0c2411f2c3..2863be568ae68c 100644 --- a/paddle/fluid/framework/new_executor/instruction/control_flow/if_instruction.cc +++ b/paddle/fluid/framework/new_executor/instruction/control_flow/if_instruction.cc @@ -119,7 +119,7 @@ IfInstruction::IfInstruction(size_t id, outputs.emplace(value, GetValueIds(value, *value_exec_info)); } if (value.use_count() > 0) { - VLOG(6) << "value " << i << " use conutn != 0"; + VLOG(6) << "value " << i << " use count != 0"; is_last_op = false; } } diff --git a/paddle/fluid/framework/new_executor/instruction/cuda_graph_instruction.cc b/paddle/fluid/framework/new_executor/instruction/cuda_graph_instruction.cc index 3105b6d09e3839..bc8fd95bf0da5c 100644 --- a/paddle/fluid/framework/new_executor/instruction/cuda_graph_instruction.cc +++ b/paddle/fluid/framework/new_executor/instruction/cuda_graph_instruction.cc @@ -109,7 +109,7 @@ CudaGraphInstruction::CudaGraphInstruction( outputs.emplace(value, GetValueIds(value, *value_exec_info)); } if (value.use_count() > 0) { - VLOG(6) << "value " << i << " use conutn != 0"; + VLOG(6) << "value " << i << " use count != 0"; is_last_op = false; } }