1 // Copyright 2022 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/common.h> 12 13 #ifdef __cplusplus 14 extern "C" { 15 #endif 16 17 18 #define DECLARE_S16_RMAXABS_UKERNEL_FUNCTION(fn_name) \ 19 XNN_INTERNAL void fn_name( \ 20 size_t batch_size, \ 21 const int16_t* input, \ 22 uint16_t* output); 23 24 25 DECLARE_S16_RMAXABS_UKERNEL_FUNCTION(xnn_s16_rmaxabs_ukernel__neon_x8) 26 DECLARE_S16_RMAXABS_UKERNEL_FUNCTION(xnn_s16_rmaxabs_ukernel__neon_x16) 27 DECLARE_S16_RMAXABS_UKERNEL_FUNCTION(xnn_s16_rmaxabs_ukernel__neon_x24) 28 DECLARE_S16_RMAXABS_UKERNEL_FUNCTION(xnn_s16_rmaxabs_ukernel__neon_x32) 29 30 DECLARE_S16_RMAXABS_UKERNEL_FUNCTION(xnn_s16_rmaxabs_ukernel__scalar_x1) 31 DECLARE_S16_RMAXABS_UKERNEL_FUNCTION(xnn_s16_rmaxabs_ukernel__scalar_x2) 32 DECLARE_S16_RMAXABS_UKERNEL_FUNCTION(xnn_s16_rmaxabs_ukernel__scalar_x3) 33 DECLARE_S16_RMAXABS_UKERNEL_FUNCTION(xnn_s16_rmaxabs_ukernel__scalar_x4) 34 35 #ifdef __cplusplus 36 } // extern "C" 37 #endif 38