Skip to content

Commit 80a7b52

Browse files
committed
minor change in tutorial
1 parent 52727c2 commit 80a7b52

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

gallery/how_to/deploy_models/deploy_prequantized.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,8 @@ def quantize_model(model, inp):
175175
#
176176
# Under the hood, quantization specific operators are lowered to a sequence of
177177
# standard Relay operators before compilation.
178-
tvm_result, rt_mod = run_tvm_model(mod, params, input_name, inp, target="llvm")
178+
target = "llvm"
179+
tvm_result, rt_mod = run_tvm_model(mod, params, input_name, inp, target=target)
179180

180181
##########################################################################
181182
# Compare the output labels

0 commit comments

Comments
 (0)