// Copyright 2020 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.

$assert BATCH_TILE >= 1
$ABC = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
$assert OP in ["RNDNE", "RNDZ", "RNDU", "RNDD"]
#include <assert.h>
#include <math.h>

#include "xnnpack/common.h"
#include "xnnpack/math.h"
#include "xnnpack/vunary.h"


$OP_FUNC = {
$  "RNDNE": "nearbyintf",
$  "RNDZ": "truncf",
$  "RNDU": "ceilf",
$  "RNDD": "floorf",
$}[OP]
void xnn_f32_v${OP.lower()}_ukernel__scalar_libm_u${BATCH_TILE}(
    size_t batch,
    const float* input,
    float* output,
    const struct xnn_f32_default_params params[restrict XNN_MIN_ELEMENTS(1)])
{
  assert(batch != 0);
  assert(batch % sizeof(float) == 0);
  assert(input != NULL);
  assert(output != NULL);

  $if BATCH_TILE > 1:
    for (; batch >= ${BATCH_TILE} * sizeof(float); batch -= ${BATCH_TILE} * sizeof(float)) {
      $for N in range(BATCH_TILE):
        const float vx${ABC[N]} = input[${N}];
      input += ${BATCH_TILE};

      $for N in range(BATCH_TILE):
        const float vy${ABC[N]} = ${OP_FUNC}(vx${ABC[N]});

      $for N in range(BATCH_TILE):
        output[${N}] = vy${ABC[N]};
      output += ${BATCH_TILE};
    }
    if XNN_UNLIKELY(batch != 0) {
      $if BATCH_TILE > 2:
        do {
          const float vx = *input++;
          const float vy = ${OP_FUNC}(vx);
          *output++ = vy;
          batch -= sizeof(float);
        } while (batch != 0);
      $else:
        const float vx = *input;
        const float vy = ${OP_FUNC}(vx);
        *output = vy;
    }
  $else:
    do {
      const float vx = *input++;
      const float vy = ${OP_FUNC}(vx);
      *output++ = vy;
      batch -= sizeof(float);
    } while (batch != 0);
}
