blob: 4e5e99191e6ca250c17313a742cc1aff384f9c7c [file] [log] [blame]
// Auto-generated file. Do not edit!
// Template: src/x8-lut/scalar.c.in
// Generator: tools/xngen
//
// Copyright 2021 Google LLC
//
// This source code is licensed under the BSD-style license found in the
// LICENSE file in the root directory of this source tree.
#include <assert.h>
#include <xnnpack/lut.h>
#include <xnnpack/common.h>
void xnn_x8_lut_ukernel__scalar_x8(
size_t n,
const uint8_t* x,
uint8_t* y,
const uint8_t t[restrict XNN_MIN_ELEMENTS(256)])
{
assert(n != 0);
assert(x != NULL);
assert(y != NULL);
for (; n >= 8 * sizeof(uint8_t); n -= 8 * sizeof(uint8_t)) {
const size_t vx0 = (size_t) x[0];
const size_t vx1 = (size_t) x[1];
const size_t vx2 = (size_t) x[2];
const size_t vx3 = (size_t) x[3];
const size_t vx4 = (size_t) x[4];
const size_t vx5 = (size_t) x[5];
const size_t vx6 = (size_t) x[6];
const size_t vx7 = (size_t) x[7];
x += 8;
const uint32_t vt0 = (uint32_t) t[vx0];
const uint32_t vt1 = (uint32_t) t[vx1];
const uint32_t vt2 = (uint32_t) t[vx2];
const uint32_t vt3 = (uint32_t) t[vx3];
const uint32_t vt4 = (uint32_t) t[vx4];
const uint32_t vt5 = (uint32_t) t[vx5];
const uint32_t vt6 = (uint32_t) t[vx6];
const uint32_t vt7 = (uint32_t) t[vx7];
y[0] = (uint8_t) vt0;
y[1] = (uint8_t) vt1;
y[2] = (uint8_t) vt2;
y[3] = (uint8_t) vt3;
y[4] = (uint8_t) vt4;
y[5] = (uint8_t) vt5;
y[6] = (uint8_t) vt6;
y[7] = (uint8_t) vt7;
y += 8;
}
if XNN_UNLIKELY(n != 0) {
do {
const size_t vx = (size_t) *x++;
const uint32_t vt = (uint32_t) t[vx];
*y++ = (uint8_t) vt;
n -= sizeof(uint8_t);
} while (n != 0);
}
}