Skip to content

Commit

Permalink
[FIX] Fix Typo (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZihengJiang authored and tqchen committed Oct 10, 2017
1 parent ddd78c9 commit fd2e527
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/benchmark/rasp_imagenet_bench.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def main():
args = parser.parse_args()

opt_level = args.opt_level
target = "llvm -target=armv7l-none-linux-anueabihf -mcpu=cortex-a53 -mattr=+neon"
target = "llvm -target=armv7l-none-linux-gnueabihf -mcpu=cortex-a53 -mattr=+neon"

num_iter = args.num_iter
batch_size = 1
Expand Down
2 changes: 1 addition & 1 deletion tutorials/deploy_model_on_rasp.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def transform_image(image):
# Pi, which has been proved as a good compilation configuration.

if use_rasp:
target = "llvm -target=armv7l-none-linux-anueabihf -mcpu=cortex-a53 -mattr=+neon"
target = "llvm -target=armv7l-none-linux-gnueabihf -mcpu=cortex-a53 -mattr=+neon"
else:
target = "llvm"

Expand Down

0 comments on commit fd2e527

Please sign in to comment.