blob: 43fc96e6a3bf9626e9994b9a55ce77d72828b910 [file] [log] [blame]
Marat Dukhan3bb3bfc2020-05-19 17:42:46 -07001// Copyright 2020 Google LLC
2//
3// This source code is licensed under the BSD-style license found in the
4// LICENSE file in the root directory of this source tree.
5
6#pragma once
7
8#include <stddef.h>
9#include <stdint.h>
10
11#include <xnnpack/params.h>
12#include <xnnpack/common.h>
13
14#ifdef __cplusplus
15extern "C" {
16#endif
17
18
19#define DECLARE_FILL_UKERNEL_FUNCTION(fn_name) \
20 XNN_INTERNAL void fn_name( \
Marat Dukhan9d4bfa22020-07-16 19:07:04 -070021 size_t kernel_elements, \
Marat Dukhan3bb3bfc2020-05-19 17:42:46 -070022 size_t channels, \
23 uint32_t* output, \
24 size_t output_stride, \
25 const uint32_t* fill_value);
26
27DECLARE_FILL_UKERNEL_FUNCTION(xnn_x32_fill_ukernel__sse)
28DECLARE_FILL_UKERNEL_FUNCTION(xnn_x32_fill_ukernel__neon)
Marat Dukhan8ee37012020-07-16 13:17:13 -070029DECLARE_FILL_UKERNEL_FUNCTION(xnn_x32_fill_ukernel__wasmsimd)
Marat Dukhan3bb3bfc2020-05-19 17:42:46 -070030DECLARE_FILL_UKERNEL_FUNCTION(xnn_x32_fill_ukernel__scalar_float)
31DECLARE_FILL_UKERNEL_FUNCTION(xnn_x32_fill_ukernel__scalar_int)
32
33
34#ifdef __cplusplus
35} // extern "C"
36#endif