blob: ef90f3169ca8f4b97957b3e4c446d8f6b0c89033 [file] [log] [blame]
// 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.
#pragma once
#include <stddef.h>
#include <stdint.h>
#include <xnnpack/params.h>
#include <xnnpack/common.h>
#ifdef __cplusplus
extern "C" {
#endif
#define DECLARE_X32_UNPOOL_UKERNEL_FUNCTION(fn_name) \
XNN_INTERNAL void fn_name( \
size_t p, \
size_t c, \
uint32_t f, \
const uint32_t* input, \
const uint32_t* index, \
uint32_t** output);
DECLARE_X32_UNPOOL_UKERNEL_FUNCTION(xnn_x32_unpool_ukernel__psimd)
DECLARE_X32_UNPOOL_UKERNEL_FUNCTION(xnn_x32_unpool_ukernel__scalar)
#ifdef __cplusplus
} // extern "C"
#endif