Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
magicwindyyd
mindspore
提交
179603ec
M
mindspore
项目概览
magicwindyyd
/
mindspore
与 Fork 源项目一致
Fork自
MindSpore / mindspore
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
mindspore
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
179603ec
编写于
8月 04, 2020
作者:
S
sunsuodong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix compile warning
上级
c17ed236
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
11 addition
and
8 deletion
+11
-8
mindspore/lite/src/executor.cc
mindspore/lite/src/executor.cc
+2
-0
mindspore/lite/src/ops/scatter_nd.cc
mindspore/lite/src/ops/scatter_nd.cc
+1
-1
mindspore/lite/src/ops/shape.cc
mindspore/lite/src/ops/shape.cc
+1
-1
mindspore/lite/src/runtime/kernel/arm/fp32/opt_momentum.h
mindspore/lite/src/runtime/kernel/arm/fp32/opt_momentum.h
+3
-3
mindspore/lite/src/runtime/kernel/arm/fp32/space_to_depth.cc
mindspore/lite/src/runtime/kernel/arm/fp32/space_to_depth.cc
+1
-0
mindspore/lite/src/runtime/kernel/arm/opclib/quantization/quantize.h
...ite/src/runtime/kernel/arm/opclib/quantization/quantize.h
+1
-1
mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/space_to_batch_fp32_tests.cc
.../src/runtime/kernel/arm/fp32/space_to_batch_fp32_tests.cc
+2
-2
未找到文件。
mindspore/lite/src/executor.cc
浏览文件 @
179603ec
...
...
@@ -82,6 +82,8 @@ int Executor::TransformTensorLayout(tensor::Tensor *tensor, schema::Format dst_f
return
TransformTensorLayoutUint8
(
tensor
,
dst_format
,
allocator
);
case
kNumberTypeFloat32
:
return
TransformTensorLayoutFp32
(
tensor
,
dst_format
,
allocator
);
default:
return
RET_ERROR
;
}
return
RET_OK
;
}
...
...
mindspore/lite/src/ops/scatter_nd.cc
浏览文件 @
179603ec
...
...
@@ -54,7 +54,7 @@ int ScatterND::InferShape(std::vector<tensor::Tensor *> inputs_, std::vector<ten
}
auto
output
=
outputs_
.
front
();
auto
shape_data
=
reinterpret_cast
<
int
*>
(
shape
->
Data
());
std
::
vector
<
int
>
out_shape
(
shape_data
,
shape_data
+
s
izeof
(
shape_data
)
/
sizeof
(
shape_data
[
0
]
));
std
::
vector
<
int
>
out_shape
(
shape_data
,
shape_data
+
s
hape
->
DataSize
(
));
output
->
set_shape
(
out_shape
);
output
->
set_data_type
(
update
->
data_type
());
output
->
SetFormat
(
update
->
GetFormat
());
...
...
mindspore/lite/src/ops/shape.cc
浏览文件 @
179603ec
...
...
@@ -45,7 +45,7 @@ int Shape::InferShape(std::vector<tensor::Tensor *> inputs_, std::vector<tensor:
MS_LOG
(
ERROR
)
<<
"Set shape fails."
;
return
RET_ERROR
;
}
auto
ret_dtype
=
out_tensor
->
set_data_type
(
{
in_tensor
->
data_type
()}
);
auto
ret_dtype
=
out_tensor
->
set_data_type
(
in_tensor
->
data_type
()
);
if
(
ret_dtype
!=
in_tensor
->
data_type
())
{
MS_LOG
(
ERROR
)
<<
"Set datatype fails."
;
return
RET_ERROR
;
...
...
mindspore/lite/src/runtime/kernel/arm/fp32/opt_momentum.h
浏览文件 @
179603ec
...
...
@@ -14,8 +14,8 @@
* limitations under the License.
*/
#ifndef MINDSPORE_LITE_SRC_
BACKEND
_ARM_FP32_OPT_MOMENTUM_H_
#define MINDSPORE_LITE_SRC_RUNTIME_KERNEL_ARM_OPT_MOMENTUM_H_
#ifndef MINDSPORE_LITE_SRC_
RUNTIME_KERNEL
_ARM_FP32_OPT_MOMENTUM_H_
#define MINDSPORE_LITE_SRC_RUNTIME_KERNEL_ARM_
FP32_
OPT_MOMENTUM_H_
#include <vector>
#include "src/lite_kernel.h"
...
...
@@ -37,4 +37,4 @@ class OptMomentumCPUKernel : public LiteKernel {
};
}
// namespace mindspore::kernel
#endif // MINDSPORE_LITE_SRC_RUNTIME_KERNEL_ARM_OPT_MOMENTUM_H_
#endif // MINDSPORE_LITE_SRC_RUNTIME_KERNEL_ARM_
FP32_
OPT_MOMENTUM_H_
mindspore/lite/src/runtime/kernel/arm/fp32/space_to_depth.cc
浏览文件 @
179603ec
...
...
@@ -85,6 +85,7 @@ int SpaceToDepthCPUKernel::Run() {
MS_LOG
(
ERROR
)
<<
"SpaceToDepth error error_code["
<<
ret
<<
"]"
;
return
ret
;
}
return
RET_OK
;
}
else
{
MS_LOG
(
ERROR
)
<<
"Only support NHWC now!"
;
return
RET_ERROR
;
...
...
mindspore/lite/src/runtime/kernel/arm/opclib/quantization/quantize.h
浏览文件 @
179603ec
...
...
@@ -143,7 +143,7 @@ inline void CalculateActivationRangeQuantized(bool is_relu, bool is_relu6, int32
inline
void
Quantize
(
float
*
input_data
,
int
length
,
float
scale
,
int
zero_point
,
int8_t
*
output_data
)
{
for
(
int
i
=
0
;
i
<
length
;
++
i
)
{
int
r
=
(
int
)
round
(
input_data
[
i
]
/
scale
+
zero_point
);
int8_t
q
=
r
>
CHAR_MAX
?
CHAR_MAX
:
r
;
int8_t
q
=
r
>
CHAR_MAX
?
(
int8_t
)
CHAR_MAX
:
(
int8_t
)
r
;
q
=
q
<
CHAR_MIN
?
CHAR_MIN
:
q
;
output_data
[
i
]
=
q
;
}
...
...
mindspore/lite/test/ut/src/runtime/kernel/arm/fp32/space_to_batch_fp32_tests.cc
浏览文件 @
179603ec
...
...
@@ -28,7 +28,7 @@ class SpaceToBatchTestFp32 : public mindspore::Common {
SpaceToBatchTestFp32
()
{}
};
int
InitSpaceToBatchParameter
(
SpaceToBatchParameter
*
param
)
{
void
InitSpaceToBatchParameter
(
SpaceToBatchParameter
*
param
)
{
param
->
n_dims_
=
4
;
param
->
n_space_dims_
=
2
;
...
...
@@ -56,7 +56,7 @@ int InitSpaceToBatchParameter(SpaceToBatchParameter *param) {
param
->
need_paddings_
=
true
;
}
int
InitSpaceToBatchParameter2
(
SpaceToBatchParameter
*
param
)
{
void
InitSpaceToBatchParameter2
(
SpaceToBatchParameter
*
param
)
{
param
->
block_sizes_
[
0
]
=
2
;
param
->
block_sizes_
[
1
]
=
2
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录