[fix/runtime] fix topo error (#80)

This commit is contained in:
Binbin Zhang 2022-08-28 16:35:19 +08:00 committed by GitHub
parent 53d7b8f807
commit 50354a38e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,7 +52,7 @@ int main(int argc, char* argv[]) {
for (int i = 0; i < prob.size(); i++) {
std::cout << "frame " << offset + i << " prob";
for (int j = 0; j < prob[i].size(); j++) {
std::cout << " " << prob[i][0];
std::cout << " " << prob[i][j];
}
std::cout << std::endl;
}