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
I have a tensor A that has already been quantized into a 4-bit format, resulting in a quantized representation A_bit.
Now, I would like to apply a permute or transpose operation to tensor A, in order to obtain a new tensor B and its corresponding 4-bit quantized form B_bit.
Is there a simpler or more efficient way to directly perform these operations on A_bit, without first dequantizing it back to floating point (via dequantize_nf4) and then requantizing (quantize_nf4)?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I have a tensor A that has already been quantized into a 4-bit format, resulting in a quantized representation A_bit.
Now, I would like to apply a
permute
ortranspose
operation to tensor A, in order to obtain a new tensor B and its corresponding 4-bit quantized form B_bit.Is there a simpler or more efficient way to directly perform these operations on A_bit, without first dequantizing it back to floating point (via
dequantize_nf4
) and then requantizing (quantize_nf4
)?Beta Was this translation helpful? Give feedback.
All reactions