Commit 73962977 by ziheng Committed by Tianqi Chen

[FIX] Fix Typo (#164)

parent 010953b4
......@@ -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
......
......@@ -177,7 +177,7 @@ out_shape = (batch_size, num_classes)
# 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"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment