// Copyright 2023 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. #include #include #ifdef _WIN32 #include #else #include #endif #include #include #include #include static struct xnn_ibilinear_chw_config f16_ibilinear_chw_config = {0}; static struct xnn_ibilinear_chw_config f32_ibilinear_chw_config = {0}; #if XNN_PLATFORM_WINDOWS static INIT_ONCE init_guard_f16_ibilinear_chw = INIT_ONCE_STATIC_INIT; static INIT_ONCE init_guard_f32_ibilinear_chw = INIT_ONCE_STATIC_INIT; #else static pthread_once_t init_guard_f16_ibilinear_chw = PTHREAD_ONCE_INIT; static pthread_once_t init_guard_f32_ibilinear_chw = PTHREAD_ONCE_INIT; #endif static void init_f16_ibilinear_chw_config(void) { #if XNN_ARCH_ARM && XNN_ENABLE_ARM_FP16_VECTOR && XNN_ENABLE_ARM_FP16_SCALAR const struct xnn_hardware_config* hardware_config = xnn_init_hardware_config(); assert(hardware_config != NULL); if (hardware_config->use_arm_neon_fp16_arith) { f16_ibilinear_chw_config.ukernel = (xnn_ibilinear_chw_ukernel_fn) xnn_f16_ibilinear_chw_ukernel__neonfp16arith_p8; f16_ibilinear_chw_config.channel_tile = 1; f16_ibilinear_chw_config.pixel_tile = 8; } #elif XNN_ARCH_ARM64 && XNN_ENABLE_ARM_FP16_VECTOR const struct xnn_hardware_config* hardware_config = xnn_init_hardware_config(); assert(hardware_config != NULL); if (hardware_config->use_arm_neon_fp16_arith) { f16_ibilinear_chw_config.ukernel = (xnn_ibilinear_chw_ukernel_fn) xnn_f16_ibilinear_chw_ukernel__neonfp16arith_p8; f16_ibilinear_chw_config.channel_tile = 1; f16_ibilinear_chw_config.pixel_tile = 8; } #endif } static void init_f32_ibilinear_chw_config(void) { #if XNN_ARCH_ARM const struct xnn_hardware_config* hardware_config = xnn_init_hardware_config(); assert(hardware_config != NULL); if (hardware_config->use_arm_neon) { f32_ibilinear_chw_config.ukernel = (xnn_ibilinear_chw_ukernel_fn) xnn_f32_ibilinear_chw_ukernel__neon_p8; f32_ibilinear_chw_config.channel_tile = 1; f32_ibilinear_chw_config.pixel_tile = 8; } else if (!XNN_PLATFORM_MOBILE) { f32_ibilinear_chw_config.ukernel = (xnn_ibilinear_chw_ukernel_fn) xnn_f32_ibilinear_chw_ukernel__scalar_p4; f32_ibilinear_chw_config.channel_tile = 1; f32_ibilinear_chw_config.pixel_tile = 4; } #elif XNN_ARCH_ARM64 f32_ibilinear_chw_config.ukernel = (xnn_ibilinear_chw_ukernel_fn) xnn_f32_ibilinear_chw_ukernel__neonfma_p8; f32_ibilinear_chw_config.channel_tile = 1; f32_ibilinear_chw_config.pixel_tile = 8; #elif XNN_ARCH_X86 || XNN_ARCH_X86_64 f32_ibilinear_chw_config.ukernel = (xnn_ibilinear_chw_ukernel_fn) xnn_f32_ibilinear_chw_ukernel__sse_p8; f32_ibilinear_chw_config.channel_tile = 1; f32_ibilinear_chw_config.pixel_tile = 8; #elif XNN_ARCH_WASMRELAXEDSIMD || XNN_ARCH_WASMSIMD f32_ibilinear_chw_config.ukernel = (xnn_ibilinear_chw_ukernel_fn) xnn_f32_ibilinear_chw_ukernel__wasmsimd_p8; f32_ibilinear_chw_config.channel_tile = 1; f32_ibilinear_chw_config.pixel_tile = 8; #elif XNN_ARCH_WASM f32_ibilinear_chw_config.ukernel = (xnn_ibilinear_chw_ukernel_fn) xnn_f32_ibilinear_chw_ukernel__scalar_p4; f32_ibilinear_chw_config.channel_tile = 1; f32_ibilinear_chw_config.pixel_tile = 4; #elif XNN_ARCH_RISCV f32_ibilinear_chw_config.ukernel = (xnn_ibilinear_chw_ukernel_fn) xnn_f32_ibilinear_chw_ukernel__scalar_p4; f32_ibilinear_chw_config.channel_tile = 1; f32_ibilinear_chw_config.pixel_tile = 4; #endif } #if XNN_PLATFORM_WINDOWS static BOOL CALLBACK init_f16_ibilinear_chw_config_windows(PINIT_ONCE init_once, PVOID parameter, PVOID* context) { init_f16_ibilinear_chw_config(); return TRUE; } static BOOL CALLBACK init_f32_ibilinear_chw_config_windows(PINIT_ONCE init_once, PVOID parameter, PVOID* context) { init_f32_ibilinear_chw_config(); return TRUE; } #endif const struct xnn_ibilinear_chw_config* xnn_init_f16_ibilinear_chw_config() { const struct xnn_hardware_config* hardware_config = xnn_init_hardware_config(); if (hardware_config == NULL || !xnn_is_f16_chw_compatible_config(hardware_config)) { return NULL; } #if XNN_PLATFORM_WINDOWS InitOnceExecuteOnce(&init_guard_f16_ibilinear_chw, &init_f16_ibilinear_chw_config_windows, NULL, NULL); #else pthread_once(&init_guard_f16_ibilinear_chw, &init_f16_ibilinear_chw_config); #endif return &f16_ibilinear_chw_config; } const struct xnn_ibilinear_chw_config* xnn_init_f32_ibilinear_chw_config() { const struct xnn_hardware_config* hardware_config = xnn_init_hardware_config(); if (hardware_config == NULL || !xnn_is_chw_compatible_config(hardware_config)) { return NULL; } #if XNN_PLATFORM_WINDOWS InitOnceExecuteOnce(&init_guard_f32_ibilinear_chw, &init_f32_ibilinear_chw_config_windows, NULL, NULL); #else pthread_once(&init_guard_f32_ibilinear_chw, &init_f32_ibilinear_chw_config); #endif return &f32_ibilinear_chw_config; }