Skip to content

Commit

Permalink
syntax fix (apache#3765)
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminTu authored and wweic committed Sep 6, 2019
1 parent 99a9916 commit 999506b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vta/hardware/chisel/src/test/scala/unittest/MvmTest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class TestMatrixVectorMultiplication(c: MatrixVectorMultiplication) extends Peek
* This is a software function that computes dot product with a programmable shift
* This is used as a reference for the hardware
*/
def mvm_ref(inp: Array[Int], wgt: Array[Array[Int]], shift: Int) : Array[Int] = {
def mvmRef(inp: Array[Int], wgt: Array[Array[Int]], shift: Int) : Array[Int] = {
val size = inp.length
val res = Array.fill(size) {0}
for (i <- 0 until size) {
Expand All @@ -53,7 +53,7 @@ class TestMatrixVectorMultiplication(c: MatrixVectorMultiplication) extends Peek
val wgtGen = new RandomArray(c.size, c.wgtBits)
val in_a = inpGen.any
val in_b = Array.fill(c.size) { wgtGen.any }
val res = mvm_ref(in_a, in_b, 0)
val res = mvmRef(in_a, in_b, 0)
val inpMask = helper.getMask(c.inpBits)
val wgtMask = helper.getMask(c.wgtBits)
val accMask = helper.getMask(c.accBits)
Expand Down

0 comments on commit 999506b

Please sign in to comment.