“0a71b71751cb06c43df332c89740aebcd52ec5b8”上不存在“mobile/src/fpga/KD/llapi/bias_scale.h”
提交 b1f3c449 编写于 作者: L Liangliang He

Minor fixes

上级 4465a7e5
...@@ -6,14 +6,14 @@ ...@@ -6,14 +6,14 @@
#ifndef MACE_CORE_INTEGRAL_TYPES_H_ #ifndef MACE_CORE_INTEGRAL_TYPES_H_
#define MACE_CORE_INTEGRAL_TYPES_H_ #define MACE_CORE_INTEGRAL_TYPES_H_
typedef signed char int8; typedef int8_t int8;
typedef short int16; typedef int16_t int16;
typedef int int32; typedef int32_t int32;
typedef int64_t int64; typedef int64_t int64;
typedef unsigned char uint8; typedef uint8_t uint8;
typedef unsigned short uint16; typedef uint16_t uint16;
typedef unsigned int uint32; typedef uint32_t uint32;
typedef uint64_t uint64; typedef uint64_t uint64;
#endif // MACE_CORE_INTEGRAL_TYPES_H_ #endif // MACE_CORE_INTEGRAL_TYPES_H_
...@@ -17,6 +17,9 @@ cc_library( ...@@ -17,6 +17,9 @@ cc_library(
deps = [ deps = [
"//mace/core:core", "//mace/core:core",
], ],
copts = ['-std=c++11'], copts = ['-std=c++11'] + if_android([
"-mfpu=neon", # TODO recheck the flags
"-mfloat-abi=hard",
]),
) )
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册