Skip to content

Commit

Permalink
[tests]: renamed VectorVectorActivation to VVAU
Browse files Browse the repository at this point in the history
  • Loading branch information
mmrahorovic committed Mar 25, 2024
1 parent b59e851 commit e8ae3c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/fpgadataflow/test_depthwise_convolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def test_depthwise_conv_hw_cppsim(act, pe, k, stride, padding):
if n.op_type.startswith("ConvolutionInputGenerator"):
convinputgen_node = getCustomOp(n)
convinputgen_node.set_nodeattr("SIMD", pe)
elif n.op_type.startswith("VectorVectorActivation"):
elif n.op_type.startswith("VVAU"):
vvau_node = getCustomOp(n)
vvau_node.set_nodeattr("PE", pe)
new_model = new_model.transform(SetExecMode("cppsim"))
Expand Down Expand Up @@ -235,7 +235,7 @@ def test_depthwise_conv_hw_rtlsim(act, pe, k, stride, padding):
if n.op_type.startswith("ConvolutionInputGenerator"):
convinputgen_node = getCustomOp(n)
convinputgen_node.set_nodeattr("SIMD", pe)
elif n.op_type.startswith("VectorVectorActivation"):
elif n.op_type.startswith("VVAU"):
vvau_node = getCustomOp(n)
vvau_node.set_nodeattr("PE", pe)

Expand Down

0 comments on commit e8ae3c4

Please sign in to comment.