You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As per title, baddbmm is not supported and is quite common
Can submit PR with below unless any issues/concerns...
def baddbmm_flop_jit(inputs: List[Any], outputs: List[Any]) -> Number:
"""
Count flops for fully connected layers.
"""
input_shapes = [get_shape(v) for v in inputs[1:3]]
n, c, t = input_shapes[0]
d = input_shapes[-1][-1]
flop = n * c * t * d
return flop
The text was updated successfully, but these errors were encountered:
As per title, baddbmm is not supported and is quite common
Can submit PR with below unless any issues/concerns...
The text was updated successfully, but these errors were encountered: