// Copyright 2019 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 CHANNEL_TILE > 0
$assert ROW_TILE >= 1
$ABC = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
#include <assert.h>

#include <xnnpack/math.h>
#include <xnnpack/prelu.h>


void xnn_f32_prelu_ukernel__scalar_${ROW_TILE}x${CHANNEL_TILE}(
    size_t rows,
    size_t channels,
    const float*restrict input,
    size_t input_stride,
    const float*restrict weights,
    float*restrict output,
    size_t output_stride)
{
  assert(rows != 0);
  assert(channels != 0);
  assert(channels % sizeof(float) == 0);

  const float* i0 = input;
  float* o0 = output;
  $for M in range(1, ROW_TILE):
    const float* i${M} = (const float*) ((uintptr_t) i${M-1} + input_stride);
    float* o${M} = (float*) ((uintptr_t) o${M-1} + output_stride);

  const size_t input_increment = input_stride * ${ROW_TILE} - channels;
  const size_t output_increment = output_stride * ${ROW_TILE} - channels;

  do {
    $for M in range(1, ROW_TILE):
      $if M % 2 == 0:
        if XNN_UNPREDICTABLE(rows <= ${M}) {
          i${M} = i${M-1};
          o${M} = o${M-1};
        }
      $else:
        if XNN_UNPREDICTABLE(rows < ${M+1}) {
          i${M} = i${M-1};
          o${M} = o${M-1};
        }

    const float* w = weights;
    size_t c = channels;
    $if CHANNEL_TILE > 1:
      for (; c >= ${CHANNEL_TILE} * sizeof(float); c -= ${CHANNEL_TILE} * sizeof(float)) {
        $for C in range(CHANNEL_TILE):
          const float vw${ABC[C]} = w[${C}];

        $for M in range(ROW_TILE):
          $for C in range(CHANNEL_TILE):
            const float vi${M}x${ABC[C]} = i${M}[${C}];
          i${M} += ${CHANNEL_TILE};

        $for M in range(ROW_TILE):
          $for C in range(CHANNEL_TILE):
            const float vacc${M}x${ABC[C]} = XNN_UNPREDICTABLE(vi${M}x${ABC[C]} < 0.0f) ? vi${M}x${ABC[C]} * vw${ABC[C]} : vi${M}x${ABC[C]};

        $for M in range(ROW_TILE):
          $for C in range(CHANNEL_TILE):
            o${M}[${C}] = vacc${M}x${ABC[C]};
          o${M} += ${CHANNEL_TILE};

        w += ${CHANNEL_TILE};
      }
      for (; c != 0; c -= sizeof(float)) {
        const float vw = *w++;

        $for M in range(ROW_TILE):
          const float vi${M} = *i${M}++;

        $for M in range(ROW_TILE):
          const float vacc${M} = XNN_UNPREDICTABLE(vi${M} < 0.0f) ? vi${M} * vw : vi${M};

        $for M in range(ROW_TILE):
          *o${M}++ = vacc${M};
      }
    $else:
      do {
        const float vw = *w++;

        $for M in range(ROW_TILE):
          const float vi${M} = *i${M}++;

        $for M in range(ROW_TILE):
          const float vacc${M} = XNN_UNPREDICTABLE(vi${M} < 0.0f) ? vi${M} * vw : vi${M};

        $for M in range(ROW_TILE):
          *o${M}++ = vacc${M};

        c -= sizeof(float);
      } while (c != 0);
    $for M in range(ROW_TILE):
      i${M} = (const float*) ((uintptr_t) i${M} + input_increment);
      o${M} = (float*) ((uintptr_t) o${M} + output_increment);
    rows = doz(rows, ${ROW_TILE});
  } while (rows != 0);
}
