5 Star 4 Fork 9

openEuler/AvxToNeon

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
typedefs.h 1.59 KB
一键复制 编辑 原始数据 按行查看 历史
xqm227 提交于 2021-06-17 17:01 . init AvxToNeon
/*
* Copyright (C) 2019. Huawei Technologies Co., Ltd. All rights reserved.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef AVX2NEON_H
#error " Never use <typedefs.h> directly; include " avx2neon.h" instead."
#endif
#ifndef TYPEDEFS_H
#define TYPEDEFS_H
#if defined(__GNUC__) || defined(__clang__)
#pragma push_macro("FORCE_INLINE")
#pragma push_macro("ALIGN_STRUCT")
#define FORCE_INLINE static inline __attribute__((always_inline))
#define ALIGN_STRUCT(x) __attribute__((aligned(x)))
#else
#error "Macro name collisions may happens with unknown compiler"
#ifdef FORCE_INLINE
#undef FORCE_INLINE
#endif
#define FORCE_INLINE static inline
#ifndef ALIGN_STRUCT
#define ALIGN_STRUCT(x) __declspec(align(x))
#endif
#endif
#define likely(x) __builtin_expect(!!(x), 1)
#define unlikely(x) __builtin_expect(!!(x), 0)
#ifndef __int32
#define __int32 int
#endif
#ifndef __int64
#define __int64 long long
#endif
#ifndef __mmask64
#define __mmask64 unsigned long long
#endif
#ifndef __mmask16
#define __mmask16 unsigned short
#endif
#ifndef __mmask8
#define __mmask8 unsigned char
#endif
#endif //TYPEDEFS_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/openeuler/AvxToNeon.git
git@gitee.com:openeuler/AvxToNeon.git
openeuler
AvxToNeon
AvxToNeon
master

搜索帮助