We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a68272 commit 8747df5Copy full SHA for 8747df5
src/spreadinterp.cpp
@@ -796,8 +796,8 @@ Two upsampfacs implemented. Params must match ref formula. Barnett 4/24/18 */
796
static constexpr uint8_t if_odd_degree = ((nc + 1) % 2);
797
static constexpr uint8_t offset_start = tail ? w - tail : w - simd_size;
798
static constexpr uint8_t end_idx = (w + (tail > 0)) / 2;
799
- const simd_type zv(z);
800
- const simd_type z2v = zv * zv;
+ const simd_type zv{z};
+ const auto z2v = zv * zv;
801
802
// some xsimd constant for shuffle or inverse
803
static constexpr auto shuffle_batch = []() constexpr noexcept {
0 commit comments