Skip to content

Commit

Permalink
修改运行时间相关的变量命名
Browse files Browse the repository at this point in the history
  • Loading branch information
zjhellofss committed Mar 18, 2024
1 parent 85c9975 commit 5c29569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demos/yolo/yolo_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ void YoloDemo(const std::vector<std::string>& image_paths, const std::string& pa

std::vector<std::shared_ptr<Tensor<float>>> outputs;
graph.set_inputs("pnnx_input_0", inputs);
for (int i = 0; i < 10000; ++i) {
for (int i = 0; i < 1; ++i) {
graph.Forward(true);
}
outputs = graph.get_outputs("pnnx_output_0");
Expand Down

0 comments on commit 5c29569

Please sign in to comment.