Commit a89b858
authored
Arm backend: Fix off by one bug in print from arm_executor_runner (pytorch#14120)
The arm executor runner has ET_NUM_INFERENCES set to 1 by default but
the print after run stated it has done 2 runs.
The for loop doing the execution started on 1 and checked with <=
causing the num_inferences to tick over by one.
Signed-off-by: [email protected]1 parent fbdee8f commit a89b858
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
930 | 930 | | |
931 | 931 | | |
932 | 932 | | |
933 | | - | |
| 933 | + | |
934 | 934 | | |
935 | 935 | | |
936 | 936 | | |
| |||
0 commit comments