summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQiyu8 <fangchunlin@huawei.com>2020-11-02 10:27:49 +0800
committerQiyu8 <fangchunlin@huawei.com>2020-11-02 10:27:49 +0800
commite17cdf56c4d40bcebb0a272af573be94e7286fa0 (patch)
treeefd22ed0ce7f109dc5e964e724c05ec8ed402f24
parente8669044e029829896b66d0b9918330aa4f777c5 (diff)
downloadnumpy-e17cdf56c4d40bcebb0a272af573be94e7286fa0.tar.gz
add a newline at the end of the file.
-rw-r--r--numpy/core/src/common/simd/avx2/arithmetic.h2
-rw-r--r--numpy/core/src/common/simd/avx512/arithmetic.h2
-rw-r--r--numpy/core/src/common/simd/neon/arithmetic.h2
-rw-r--r--numpy/core/src/common/simd/sse/arithmetic.h2
-rw-r--r--numpy/core/src/common/simd/vsx/arithmetic.h2
5 files changed, 5 insertions, 5 deletions
diff --git a/numpy/core/src/common/simd/avx2/arithmetic.h b/numpy/core/src/common/simd/avx2/arithmetic.h
index e43b8e7a3..8b98394e0 100644
--- a/numpy/core/src/common/simd/avx2/arithmetic.h
+++ b/numpy/core/src/common/simd/avx2/arithmetic.h
@@ -136,4 +136,4 @@ NPY_FINLINE double npyv_sum_f64(__m256d a)
__m128d hi = _mm256_extractf128_pd(sum_halves, 1);
__m128d sum = _mm_add_pd(lo, hi);
return _mm_cvtsd_f64(sum);
-} \ No newline at end of file
+}
diff --git a/numpy/core/src/common/simd/avx512/arithmetic.h b/numpy/core/src/common/simd/avx512/arithmetic.h
index f31051aaf..989e10f39 100644
--- a/numpy/core/src/common/simd/avx512/arithmetic.h
+++ b/numpy/core/src/common/simd/avx512/arithmetic.h
@@ -172,4 +172,4 @@ NPY_FINLINE __m512i npyv_mul_u8(__m512i a, __m512i b)
__m512d sum8 = _mm512_add_pd(sum16, h16);
return _mm_cvtsd_f64(_mm512_castpd512_pd128(sum8));
}
-#endif \ No newline at end of file
+#endif
diff --git a/numpy/core/src/common/simd/neon/arithmetic.h b/numpy/core/src/common/simd/neon/arithmetic.h
index 3bea14384..2d56adfbd 100644
--- a/numpy/core/src/common/simd/neon/arithmetic.h
+++ b/numpy/core/src/common/simd/neon/arithmetic.h
@@ -131,4 +131,4 @@ NPY_FINLINE float npyv_sum_f32(float32x4_t a)
{
return vget_lane_f64(vget_low_f64(a) + vget_high_f64(a), 0);
}
-#endif \ No newline at end of file
+#endif
diff --git a/numpy/core/src/common/simd/sse/arithmetic.h b/numpy/core/src/common/simd/sse/arithmetic.h
index a92c39bcc..cf33349fc 100644
--- a/numpy/core/src/common/simd/sse/arithmetic.h
+++ b/numpy/core/src/common/simd/sse/arithmetic.h
@@ -171,4 +171,4 @@ NPY_FINLINE double npyv_sum_f64(__m128d a)
#else
return _mm_cvtsd_f64(_mm_add_pd(a, _mm_unpackhi_pd(a, a)));
#endif
-} \ No newline at end of file
+}
diff --git a/numpy/core/src/common/simd/vsx/arithmetic.h b/numpy/core/src/common/simd/vsx/arithmetic.h
index 9b323d7d1..755aa1ca3 100644
--- a/numpy/core/src/common/simd/vsx/arithmetic.h
+++ b/numpy/core/src/common/simd/vsx/arithmetic.h
@@ -128,4 +128,4 @@ NPY_FINLINE float npyv_sum_f32(npyv_f32 a)
NPY_FINLINE double npyv_sum_f64(npyv_f64 a)
{
return vec_extract(a, 0) + vec_extract(a, 1);
-} \ No newline at end of file
+}