Add a Rounding Mode Attribute to the BitShift Node
To improve rounding accuracy when exporting fully quantized models, a rounding mode attribute should be added to the BitShift operator. Instead of a direct right shift by N (value >> N), this attribute would allow an alternative approach: first shifting by N-1, adding 1, and then performing a final shift by 1. This helps reduce truncation errors and improve numerical stability in quantized computations.