1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
|
/* 19/08/22 kleisauke
* - initial implementation
* 07/09/22 kleisauke
* - implement using ReorderWidenMulAccumulate
* 29/11/22 kleisauke
* - prefer use of RearrangeToOddPlusEven
* 02/10/23 kleisauke
* - prefer use of InterleaveWhole{Lower,Upper} on RVV/SVE
*/
/*
This file is part of VIPS.
VIPS is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA
*/
/*
These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif /*HAVE_CONFIG_H*/
#include <glib/gi18n-lib.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <vips/vips.h>
#include <vips/vector.h>
#include <vips/debug.h>
#include <vips/internal.h>
#include "presample.h"
#ifdef HAVE_HWY
#undef HWY_TARGET_INCLUDE
#define HWY_TARGET_INCLUDE "libvips/resample/reducev_hwy.cpp"
#include <hwy/foreach_target.h>
#include <hwy/highway.h>
namespace HWY_NAMESPACE {
using namespace hwy::HWY_NAMESPACE;
using DI32 = ScalableTag<int32_t>;
using DI16 = ScalableTag<int16_t>;
using DU8 = ScalableTag<uint8_t>;
constexpr DU8 du8;
constexpr Rebind<uint8_t, DI16> du8x16;
constexpr Rebind<uint8_t, DI32> du8x32;
constexpr DI16 di16;
constexpr DI32 di32;
#if defined(HAVE_HWY_1_1_0) && \
(HWY_ARCH_RVV || (HWY_ARCH_ARM_A64 && HWY_TARGET <= HWY_SVE))
#define InterleaveLower InterleaveWholeLower
#define InterleaveUpper InterleaveWholeUpper
#endif
HWY_ATTR void
vips_reducev_uchar_hwy(VipsPel *pout, VipsPel *pin,
int32_t n, int32_t ne, int32_t lskip, const int16_t *HWY_RESTRICT k)
{
#if HWY_TARGET != HWY_SCALAR
const auto l1 = lskip / sizeof(uint8_t);
#if !defined(HAVE_HWY_1_1_0) && \
(HWY_ARCH_RVV || (HWY_ARCH_ARM_A64 && HWY_TARGET <= HWY_SVE))
/* Ensure we do not cross 128-bit block boundaries on RVV/SVE.
*/
const int32_t N = 16;
#else
const int32_t N = Lanes(du8);
#endif
const auto zero = Zero(du8);
const auto initial = Set(di32, VIPS_INTERPOLATE_SCALE >> 1);
/* Main loop: unrolled.
*/
int32_t x = 0;
for (; x + N <= ne; x += N) {
auto *HWY_RESTRICT p = (uint8_t *) pin + x;
auto *HWY_RESTRICT q = (uint8_t *) pout + x;
#if HWY_ARCH_X86 || HWY_ARCH_WASM || HWY_TARGET == HWY_EMU128
/* Initialize the sum with the addition on x86 and Wasm,
* avoids an extra add instruction. Should be safe given
* that only one accumulator is used.
*/
auto sum0 = initial;
auto sum2 = initial;
auto sum4 = initial;
auto sum6 = initial;
#else
auto sum0 = Zero(di32);
auto sum2 = Zero(di32);
auto sum4 = Zero(di32);
auto sum6 = Zero(di32);
#endif
auto sum1 = Zero(di32); /* unused on x86 and Wasm */
auto sum3 = Zero(di32); /* unused on x86 and Wasm */
auto sum5 = Zero(di32); /* unused on x86 and Wasm */
auto sum7 = Zero(di32); /* unused on x86 and Wasm */
int32_t i = 0;
for (; i + 2 <= n; i += 2) {
/* Load two coefficients at once.
*/
auto mmk = BitCast(di16, Set(di32, *(int32_t *) &k[i]));
auto top = LoadU(du8, p); /* top line */
p += l1;
auto bottom = LoadU(du8, p); /* bottom line */
p += l1;
auto source = InterleaveLower(top, bottom);
auto pix = BitCast(di16, InterleaveLower(source, zero));
sum0 = ReorderWidenMulAccumulate(di32, pix, mmk, sum0,
/* byref */ sum1);
pix = BitCast(di16, InterleaveUpper(du8, source, zero));
sum2 = ReorderWidenMulAccumulate(di32, pix, mmk, sum2,
/* byref */ sum3);
source = InterleaveUpper(du8, top, bottom);
pix = BitCast(di16, InterleaveLower(source, zero));
sum4 = ReorderWidenMulAccumulate(di32, pix, mmk, sum4,
/* byref */ sum5);
pix = BitCast(di16, InterleaveUpper(du8, source, zero));
sum6 = ReorderWidenMulAccumulate(di32, pix, mmk, sum6,
/* byref */ sum7);
}
for (; i < n; ++i) {
auto mmk = Set(di16, k[i]);
auto top = LoadU(du8, p);
p += l1;
auto source = InterleaveLower(top, zero);
auto pix = BitCast(di16, InterleaveLower(source, zero));
sum0 = ReorderWidenMulAccumulate(di32, pix, mmk, sum0,
/* byref */ sum1);
pix = BitCast(di16, InterleaveUpper(du8, source, zero));
sum2 = ReorderWidenMulAccumulate(di32, pix, mmk, sum2,
/* byref */ sum3);
source = InterleaveUpper(du8, top, zero);
pix = BitCast(di16, InterleaveLower(source, zero));
sum4 = ReorderWidenMulAccumulate(di32, pix, mmk, sum4,
/* byref */ sum5);
pix = BitCast(di16, InterleaveUpper(du8, source, zero));
sum6 = ReorderWidenMulAccumulate(di32, pix, mmk, sum6,
/* byref */ sum7);
}
sum0 = RearrangeToOddPlusEven(sum0, sum1);
sum2 = RearrangeToOddPlusEven(sum2, sum3);
sum4 = RearrangeToOddPlusEven(sum4, sum5);
sum6 = RearrangeToOddPlusEven(sum6, sum7);
#if !(HWY_ARCH_X86 || HWY_ARCH_WASM || HWY_TARGET == HWY_EMU128)
sum0 = Add(sum0, initial);
sum2 = Add(sum2, initial);
sum4 = Add(sum4, initial);
sum6 = Add(sum6, initial);
#endif
/* The final 32->8 conversion.
*/
sum0 = ShiftRight<VIPS_INTERPOLATE_SHIFT>(sum0);
sum2 = ShiftRight<VIPS_INTERPOLATE_SHIFT>(sum2);
sum4 = ShiftRight<VIPS_INTERPOLATE_SHIFT>(sum4);
sum6 = ShiftRight<VIPS_INTERPOLATE_SHIFT>(sum6);
#if HWY_ARCH_RVV || (HWY_ARCH_ARM_A64 && HWY_TARGET <= HWY_SVE)
/* RVV/SVE defines demotion as writing to the upper or lower half
* of each lane, rather than compacting them within a vector.
*/
auto demoted0 = DemoteTo(du8x32, sum0);
auto demoted1 = DemoteTo(du8x32, sum2);
auto demoted2 = DemoteTo(du8x32, sum4);
auto demoted3 = DemoteTo(du8x32, sum6);
StoreU(demoted0, du8x32, q + 0 * N / 4);
StoreU(demoted1, du8x32, q + 1 * N / 4);
StoreU(demoted2, du8x32, q + 2 * N / 4);
StoreU(demoted3, du8x32, q + 3 * N / 4);
#else
auto demoted0 = ReorderDemote2To(di16, sum0, sum2);
auto demoted2 = ReorderDemote2To(di16, sum4, sum6);
auto demoted = ReorderDemote2To(du8, demoted0, demoted2);
StoreU(demoted, du8, q);
#endif
}
/* `ne` was not a multiple of the vector length `N`;
* proceed one by one.
*/
for (; x < ne; ++x) {
auto *HWY_RESTRICT p = (uint8_t *) pin + x;
auto *HWY_RESTRICT q = (uint8_t *) pout + x;
#if HWY_ARCH_X86 || HWY_ARCH_WASM || HWY_TARGET == HWY_EMU128
/* Initialize the sum with the addition on x86 and Wasm,
* avoids an extra add instruction. Should be safe given
* that only one accumulator is used.
*/
auto sum0 = initial;
#else
auto sum0 = Zero(di32);
#endif
auto sum1 = Zero(di32); /* unused on x86 and Wasm */
int32_t i = 0;
for (; i + 2 <= n; i += 2) {
/* Load two coefficients at once.
*/
auto mmk = BitCast(di16, Set(di32, *(int32_t *) &k[i]));
auto top = LoadU(du8x16, p); /* top line */
p += l1;
auto bottom = LoadU(du8x16, p); /* bottom line */
p += l1;
auto source = InterleaveLower(top, bottom);
auto pix = PromoteTo(di16, source);
sum0 = ReorderWidenMulAccumulate(di32, pix, mmk, sum0,
/* byref */ sum1);
}
for (; i < n; ++i) {
auto mmk = Set(di16, k[i]);
auto top = LoadU(du8x32, p);
p += l1;
auto source = PromoteTo(di32, top);
auto pix = BitCast(di16, source);
sum0 = ReorderWidenMulAccumulate(di32, pix, mmk, sum0,
/* byref */ sum1);
}
sum0 = RearrangeToOddPlusEven(sum0, sum1);
#if !(HWY_ARCH_X86 || HWY_ARCH_WASM || HWY_TARGET == HWY_EMU128)
sum0 = Add(sum0, initial);
#endif
/* The final 32->8 conversion.
*/
sum0 = ShiftRight<VIPS_INTERPOLATE_SHIFT>(sum0);
auto demoted = DemoteTo(du8x32, sum0);
*q = GetLane(demoted);
}
#endif
}
#undef InterleaveLower
#undef InterleaveUpper
} /*namespace HWY_NAMESPACE*/
#if HWY_ONCE
HWY_EXPORT(vips_reducev_uchar_hwy);
void
vips_reducev_uchar_hwy(VipsPel *pout, VipsPel *pin,
int n, int ne, int lskip, const short *restrict k)
{
/* clang-format off */
HWY_DYNAMIC_DISPATCH(vips_reducev_uchar_hwy)(pout, pin, n, ne, lskip, k);
/* clang-format on */
}
#endif /*HWY_ONCE*/
#endif /*HAVE_HWY*/
|