|
|
|
|
|
|
|
|
|
|
|
#include <assert.h> |
|
|
|
#ifdef _WIN32 |
|
#include <windows.h> |
|
#else |
|
#include <pthread.h> |
|
#endif |
|
|
|
#include <xnnpack/common.h> |
|
#include <xnnpack/config.h> |
|
#include <xnnpack/vbinary.h> |
|
|
|
|
|
static struct xnn_cmul_config f32_cmul_config = {0}; |
|
|
|
|
|
#if XNN_PLATFORM_WINDOWS |
|
static INIT_ONCE init_guard_f32_cmul = INIT_ONCE_STATIC_INIT; |
|
#else |
|
static pthread_once_t init_guard_f32_cmul = PTHREAD_ONCE_INIT; |
|
#endif |
|
|
|
|
|
static void init_f32_cmul_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_cmul_config.ukernel = (xnn_vbinary_ukernel_fn) xnn_f32_vcmul_ukernel__neon_x8; |
|
f32_cmul_config.element_tile = 8; |
|
} else if (!XNN_PLATFORM_MOBILE) { |
|
f32_cmul_config.ukernel = (xnn_vbinary_ukernel_fn) xnn_f32_vcmul_ukernel__scalar_x4; |
|
f32_cmul_config.element_tile = 4; |
|
} |
|
#elif XNN_ARCH_ARM64 |
|
f32_cmul_config.ukernel = (xnn_vbinary_ukernel_fn) xnn_f32_vcmul_ukernel__neon_x8; |
|
f32_cmul_config.element_tile = 8; |
|
#elif XNN_ARCH_X86 || XNN_ARCH_X86_64 |
|
f32_cmul_config.ukernel = (xnn_vbinary_ukernel_fn) xnn_f32_vcmul_ukernel__sse_x8; |
|
f32_cmul_config.element_tile = 8; |
|
#elif XNN_ARCH_WASMSIMD || XNN_ARCH_WASMRELAXEDSIMD |
|
f32_cmul_config.ukernel = (xnn_vbinary_ukernel_fn) xnn_f32_vcmul_ukernel__wasmsimd_x8; |
|
f32_cmul_config.element_tile = 8; |
|
#elif XNN_ARCH_WASM |
|
f32_cmul_config.ukernel = (xnn_vbinary_ukernel_fn) xnn_f32_vcmul_ukernel__scalar_x4; |
|
f32_cmul_config.element_tile = 4; |
|
#elif XNN_ARCH_RISCV |
|
f32_cmul_config.ukernel = (xnn_vbinary_ukernel_fn) xnn_f32_vcmul_ukernel__scalar_x4; |
|
f32_cmul_config.element_tile = 4; |
|
#endif |
|
} |
|
|
|
|
|
#if XNN_PLATFORM_WINDOWS |
|
static BOOL CALLBACK init_f32_cmul_config_windows(PINIT_ONCE init_once, PVOID parameter, PVOID* context) { |
|
init_f32_cmul_config(); |
|
return TRUE; |
|
} |
|
#endif |
|
|
|
|
|
const struct xnn_cmul_config* xnn_init_f32_cmul_config() { |
|
const struct xnn_hardware_config* hardware_config = xnn_init_hardware_config(); |
|
if (hardware_config == NULL) { |
|
return NULL; |
|
} |
|
#if XNN_PLATFORM_WINDOWS |
|
InitOnceExecuteOnce(&init_guard_f32_cmul, &init_f32_cmul_config_windows, NULL, NULL); |
|
#else |
|
pthread_once(&init_guard_f32_cmul, &init_f32_cmul_config); |
|
#endif |
|
return &f32_cmul_config; |
|
} |
|
|