Details
-
New Feature
-
Status: Open
-
Major
-
Resolution: Unresolved
-
None
-
None
Description
This task is to add a new instruction.
Assuming M is an matrix and S is a scaling constant, vector or matrix then implement a rewrite and instruction that fuse the following sequence of instructions:
```
M2 = floor(M * S)
C = compress(M2)
```
The result should be a CLA compressed quantized matrix according to the scaling values of S.
In a passing implementation S is a scalar constant value.