119d827192bc104730b90522ff5e0f60ee19fbd0
[platform/core/ml/nnfw.git] / compute / cker / include / cker / neon / neon_check.h
1 /* Copyright 2019 The TensorFlow Authors. All Rights Reserved.
2
3 Licensed under the Apache License, Version 2.0 (the "License");
4 you may not use this file except in compliance with the License.
5 You may obtain a copy of the License at
6
7     http://www.apache.org/licenses/LICENSE-2.0
8
9 Unless required by applicable law or agreed to in writing, software
10 distributed under the License is distributed on an "AS IS" BASIS,
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 See the License for the specific language governing permissions and
13 limitations under the License.
14 ==============================================================================*/
15 #ifndef __NNFW_CKER_NEON_CHECK_H__
16 #define __NNFW_CKER_NEON_CHECK_H__
17
18 #if defined(__ARM_NEON__) || defined(__ARM_NEON)
19 #define USE_NEON
20 #include <arm_neon.h>
21 #endif
22
23 // Disable X86_NEON
24 // #if defined __GNUC__ && defined __SSE4_1__ && !defined TF_LITE_DISABLE_X86_NEON
25 #if 0
26 #define USE_NEON
27 #pragma GCC diagnostic push
28 #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
29 #pragma GCC diagnostic ignored "-Wattributes"
30 #pragma GCC diagnostic ignored "-Wnarrowing"
31 #pragma GCC diagnostic ignored "-Wsequence-point"
32 #include "NEON_2_SSE.h"
33 #pragma GCC diagnostic pop
34 #endif
35
36 // NEON_OR_PORTABLE(SomeFunc, args) calls NeonSomeFunc(args) if USE_NEON is
37 // defined, PortableSomeFunc(args) otherwise.
38 #ifdef USE_NEON
39 // Always use Neon code
40 #define NEON_OR_PORTABLE(funcname, ...) Neon##funcname(__VA_ARGS__)
41
42 #else
43 // No NEON available: Use Portable code
44 #define NEON_OR_PORTABLE(funcname, ...) Portable##funcname(__VA_ARGS__)
45
46 #endif // defined(USE_NEON)
47
48 #endif // __NNFW_CKER_NEON_CHECK_H__