#include <assert.h>
#include <stddef.h>
#ifdef _WIN32
#include <windows.h>
#else
#include <pthread.h>
#endif
#include "xnnpack/common.h"
#include "xnnpack/config.h"
#include "xnnpack/gavgpool.h"
#include "xnnpack/microfnptr.h"
#include "xnnpack/microparams-init.h"
static struct xnn_gavgpool_config f16_gavgpool_config = …;
static struct xnn_gavgpool_config f32_gavgpool_config = …;
static struct xnn_gavgpool_config qs8_gavgpool_config = …;
static struct xnn_gavgpool_config qu8_gavgpool_config = …;
#if XNN_PLATFORM_WINDOWS
static INIT_ONCE init_guard_f16_gavgpool = INIT_ONCE_STATIC_INIT;
static INIT_ONCE init_guard_f32_gavgpool = INIT_ONCE_STATIC_INIT;
static INIT_ONCE init_guard_qs8_gavgpool = INIT_ONCE_STATIC_INIT;
static INIT_ONCE init_guard_qu8_gavgpool = INIT_ONCE_STATIC_INIT;
#else
static pthread_once_t init_guard_f16_gavgpool = …;
static pthread_once_t init_guard_f32_gavgpool = …;
static pthread_once_t init_guard_qs8_gavgpool = …;
static pthread_once_t init_guard_qu8_gavgpool = …;
#endif
static void init_f16_gavgpool_config(void) { … }
static void init_f32_gavgpool_config(void) { … }
static void init_qs8_gavgpool_config(void) { … }
static void init_qu8_gavgpool_config(void) { … }
#if XNN_PLATFORM_WINDOWS
static BOOL CALLBACK init_f16_gavgpool_config_windows(PINIT_ONCE init_once, PVOID parameter, PVOID* context) {
init_f16_gavgpool_config();
return TRUE;
}
static BOOL CALLBACK init_f32_gavgpool_config_windows(PINIT_ONCE init_once, PVOID parameter, PVOID* context) {
init_f32_gavgpool_config();
return TRUE;
}
static BOOL CALLBACK init_qs8_gavgpool_config_windows(PINIT_ONCE init_once, PVOID parameter, PVOID* context) {
init_qs8_gavgpool_config();
return TRUE;
}
static BOOL CALLBACK init_qu8_gavgpool_config_windows(PINIT_ONCE init_once, PVOID parameter, PVOID* context) {
init_qu8_gavgpool_config();
return TRUE;
}
#endif
const struct xnn_gavgpool_config* xnn_init_f16_gavgpool_config() { … }
const struct xnn_gavgpool_config* xnn_init_f32_gavgpool_config() { … }
const struct xnn_gavgpool_config* xnn_init_qs8_gavgpool_config() { … }
const struct xnn_gavgpool_config* xnn_init_qu8_gavgpool_config() { … }