1 /* 2 * Copyright (c) 2020 Arm Limited. 3 * 4 * SPDX-License-Identifier: MIT 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a copy 7 * of this software and associated documentation files (the "Software"), to 8 * deal in the Software without restriction, including without limitation the 9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 10 * sell copies of the Software, and to permit persons to whom the Software is 11 * furnished to do so, subject to the following conditions: 12 * 13 * The above copyright notice and this permission notice shall be included in all 14 * copies or substantial portions of the Software. 15 * 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 * SOFTWARE. 23 */ 24 #ifndef SRC_CORE_COMMON_REGISTRARS_H 25 #define SRC_CORE_COMMON_REGISTRARS_H 26 27 #if defined(__ARM_FEATURE_FP16_VECTOR_ARITHMETIC) && defined(ENABLE_FP16_KERNELS) 28 #define REGISTER_FP16_NEON(func_name) &(func_name) 29 #else /* defined(__ARM_FEATURE_FP16_VECTOR_ARITHMETIC) && defined(ENABLE_FP16_KERNELS) */ 30 #define REGISTER_FP16_NEON(func_name) nullptr 31 #endif /* defined(__ARM_FEATURE_FP16_VECTOR_ARITHMETIC) && defined(ENABLE_FP16_KERNELS) */ 32 33 #if defined(ENABLE_FP32_KERNELS) 34 #define REGISTER_FP32_NEON(func_name) &(func_name) 35 #else /* defined(ENABLE_FP32_KERNELS) */ 36 #define REGISTER_FP32_NEON(func_name) nullptr 37 #endif /* defined(ENABLE_FP32_KERNELS) */ 38 39 #if defined(ENABLE_QASYMM8_SIGNED_KERNELS) 40 #define REGISTER_QASYMM8_SIGNED_NEON(func_name) &(func_name) 41 #else /* defined(ENABLE_QASYMM8_SIGNED_KERNELS) */ 42 #define REGISTER_QASYMM8_SIGNED_NEON(func_name) nullptr 43 #endif /* defined(ENABLE_QASYMM8_SIGNED_KERNELS) */ 44 45 #if defined(ENABLE_QASYMM8_KERNELS) 46 #define REGISTER_QASYMM8_NEON(func_name) &(func_name) 47 #else /* defined(ENABLE_QASYMM8_KERNELS) */ 48 #define REGISTER_QASYMM8_NEON(func_name) nullptr 49 #endif /* defined(ENABLE_QASYMM8_KERNELS) */ 50 51 #if defined(ENABLE_QSYMM16_KERNELS) 52 #define REGISTER_QSYMM16_NEON(func_name) &(func_name) 53 #else /* defined(ENABLE_QSYMM16_KERNELS) */ 54 #define REGISTER_QSYMM16_NEON(func_name) nullptr 55 #endif /* defined(ENABLE_QSYMM16_KERNELS) */ 56 57 #endif /* SRC_CORE_COMMON_REGISTRARS_H */ 58