Remove unused variable.

This commit is contained in:
Rasmus Munk Larsen 2021-09-16 20:02:42 +00:00
parent 3c87d6b662
commit da027fa20a

View File

@ -1441,7 +1441,6 @@ EIGEN_STRONG_INLINE Packet8f Bf16ToF32(const Packet8bf& a) {
// Convert float to bfloat16 according to round-to-nearest-even/denormals algorithm.
EIGEN_STRONG_INLINE Packet8bf F32ToBf16(const Packet8f& a) {
Packet8bf r;
__m256i input = _mm256_castps_si256(a);