This is an automated email from the ASF dual-hosted git repository.
tqchen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git
The following commit(s) were added to refs/heads/master by this push:
new 1d5504b [APP] Fix misprint in demo.cc during initializing of picture
tensor data (#6566)
1d5504b is described below
commit 1d5504bfeabaa8f4c64115c1e0624991cfdbca98
Author: dlexplorer <[email protected]>
AuthorDate: Sun Sep 27 03:01:01 2020 +0300
[APP] Fix misprint in demo.cc during initializing of picture tensor data
(#6566)
---
apps/bundle_deploy/demo.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/apps/bundle_deploy/demo.cc b/apps/bundle_deploy/demo.cc
index 34654c6..98f29d2 100644
--- a/apps/bundle_deploy/demo.cc
+++ b/apps/bundle_deploy/demo.cc
@@ -112,7 +112,7 @@ int main(int argc, char** argv) {
gettimeofday(&t1, 0);
float input_storage[1 * 3 * 224 * 224];
- FILE* fp = fopen(argv[3], "rb");
+ FILE* fp = fopen(argv[4], "rb");
fread(input_storage, 3 * 224 * 224, 4, fp);
fclose(fp);