Skip to content
Snippets Groups Projects
Unverified Commit debbe662 authored by Yaman Umuroglu's avatar Yaman Umuroglu Committed by GitHub
Browse files

[FMPadding] add parantheses around exp cycles calc

parent e19076d9
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,7 @@ class FMPadding_Batch(HLSCustomOp):
channels = self.get_nodeattr("NumChannels")
simd = self.get_nodeattr("SIMD")
batch_size = self.get_nodeattr("numInputVectors")
exp_cycles = channels / simd * batch_size * odim * odim
exp_cycles = (channels / simd) * batch_size * odim * odim
return exp_cycles
def get_normal_input_shape(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment