Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
yzhliu committed Sep 28, 2019
1 parent 23a8b02 commit 4bee735
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion topi/python/topi/arm_cpu/tensor_intrin.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ def _instr(index):
vec_c = outs[0].vload([0], dtype_c)

inst = 'udot' if dtype == 'uint' else 'sdot'
inst = 'llvm.aarch64.neon.%s.v%di32.v%di8' % (inst, int32_lanes, int32_lanes * num_int8_elements)
inst = 'llvm.aarch64.neon.%s.v%di32.v%di8' % (
inst, int32_lanes, int32_lanes * num_int8_elements)
vdot = tvm.call_llvm_intrin(dtype_c,
inst,
tvm.const(2, 'uint32'),
Expand Down

0 comments on commit 4bee735

Please sign in to comment.