Created by: wozna
This PR presents:
- scale-matmul fuse pass, that will be used on the fp32 model
- test for that pass
Matmul has attr alpha:
C = alpha * X * Y + beta * C
Pass squashes scale op and add that scale to alpha. The result is:
C = alpha * scale * X * Y + beta * C