diff --git a/vta/hardware/chisel/src/main/scala/core/TensorUtil.scala b/vta/hardware/chisel/src/main/scala/core/TensorUtil.scala index 1f005548d503..99e9012b71b8 100644 --- a/vta/hardware/chisel/src/main/scala/core/TensorUtil.scala +++ b/vta/hardware/chisel/src/main/scala/core/TensorUtil.scala @@ -319,8 +319,8 @@ class TensorDataCtrl(tensorType: String = "none", when(split) { caddr := caddr + xmax_bytes }.elsewhen(stride) { - caddr := baddr + (dec.xstride << log2Ceil(strideFactor)) - baddr := baddr + (dec.xstride << log2Ceil(strideFactor)) + caddr := baddr + (dec.xstride << log2Ceil(elemBytes)) + baddr := baddr + (dec.xstride << log2Ceil(elemBytes)) } } diff --git a/vta/tests/python/unittest/test_vta_insn.py b/vta/tests/python/unittest/test_vta_insn.py index 25d7d8ce9a6a..574273f274f4 100644 --- a/vta/tests/python/unittest/test_vta_insn.py +++ b/vta/tests/python/unittest/test_vta_insn.py @@ -89,10 +89,10 @@ def test_padded_load(): """Test padded load.""" def _run(env, remote): # declare - n = 21 - m = 20 - pad_before = [0, 1, 0, 0] - pad_after = [1, 3, 0, 0] + n = 3 + m = 5 + pad_before = [2, 1, 0, 0] + pad_after = [1, 2, 0, 0] x = tvm.placeholder( (n, m, env.BATCH, env.BLOCK_OUT), name="x", @@ -126,7 +126,7 @@ def _run(env, remote): f = remote.load_module("padded_load.o") # verify ctx = remote.ext_dev(0) - x_np = np.random.randint(1, 2, size=( + x_np = np.random.randint(-10, 10, size=( n, m, env.BATCH, env.BLOCK_OUT)).astype(x.dtype) y_np = np.zeros((n + pad_before[0] + pad_after[0], m + pad_before[1] + pad_after[1],