aboutsummaryrefslogtreecommitdiff
path: root/src/core/common/Registrars.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/common/Registrars.h')
-rw-r--r--src/core/common/Registrars.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/common/Registrars.h b/src/core/common/Registrars.h
index 42c1aaa9fa..d6dc3449fc 100644
--- a/src/core/common/Registrars.h
+++ b/src/core/common/Registrars.h
@@ -141,6 +141,12 @@
#define REGISTER_QSYMM16_SVE2(func_name) nullptr
#endif /* defined(ENABLE_QSYMM16_KERNELS) */
+#if defined(ENABLE_QASYMM8_KERNELS) || defined(ENABLE_QASYMM8_SIGNED_KERNELS)
+#define REGISTER_Q8_NEON(func_name) &(func_name)
+#else /* !defined(ENABLE_QASYMM8_KERNELS) && !defined(ENABLE_QASYMM8_SIGNED_KERNELS) */
+#define REGISTER_Q8_NEON(func_name) nullptr
+#endif /* defined(ENABLE_QASYMM8_KERNELS) || defined(ENABLE_QASYMM8_SIGNED_KERNELS) */
+
#if defined(ENABLE_INTEGER_KERNELS)
#if defined(ARM_COMPUTE_ENABLE_SVE)