Tosa supports fp16 and fp32 accumulator type for fp16 input, but
no way to tell for computational operators whether accumulator
should be fp16 or fp32 from input type. Add this new attribute
to specify the type.
Set to fp32 by default for now. When the time fp16 is supported,
the accumulator type can be selected based on trade-off between
performance and accuracy.
Rather than doing an enum for the accumulator type you should be able to use a TypeAttr. Then in a separate verifier you can check that the subtype is correct. It will make the TosaToLinalg pass cleaner as you won't need a switch on the enum.