Skip to content

Commit b8496da

Browse files
authored
[Typo error] fix typo error conutn to count (#74475)
1 parent 1178ff0 commit b8496da

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

paddle/fluid/framework/new_executor/instruction/control_flow/if_instruction.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ IfInstruction::IfInstruction(size_t id,
119119
outputs.emplace(value, GetValueIds(value, *value_exec_info));
120120
}
121121
if (value.use_count() > 0) {
122-
VLOG(6) << "value " << i << " use conutn != 0";
122+
VLOG(6) << "value " << i << " use count != 0";
123123
is_last_op = false;
124124
}
125125
}

paddle/fluid/framework/new_executor/instruction/cuda_graph_instruction.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ CudaGraphInstruction::CudaGraphInstruction(
109109
outputs.emplace(value, GetValueIds(value, *value_exec_info));
110110
}
111111
if (value.use_count() > 0) {
112-
VLOG(6) << "value " << i << " use conutn != 0";
112+
VLOG(6) << "value " << i << " use count != 0";
113113
is_last_op = false;
114114
}
115115
}

0 commit comments

Comments
 (0)