#pragma once #include #include #include #ifdef __cplusplus extern "C" { #endif #define DECLARE_F32_VSCALE_UKERNEL_FUNCTION(fn_name) \ XNN_INTERNAL void fn_name( \ size_t n, \ const float* x, \ float* y, \ float c); DECLARE_F32_VSCALE_UKERNEL_FUNCTION(xnn_f32_vscale_ukernel__avx_x32) DECLARE_F32_VSCALE_UKERNEL_FUNCTION(xnn_f32_vscale_ukernel__avx512f_x64) #ifdef __cplusplus } /* extern "C" */ #endif