Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
magicwindyyd
mindspore
提交
fb90ff16
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看板
提交
fb90ff16
编写于
7月 09, 2020
作者:
J
jzg
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
increase the max size of tensor.
上级
94d0d45a
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
13 addition
and
13 deletion
+13
-13
mindspore/ccsrc/kernel/aicpu/aicpu_kernel_build.cc
mindspore/ccsrc/kernel/aicpu/aicpu_kernel_build.cc
+4
-4
mindspore/ccsrc/operator/prim_structures.cc
mindspore/ccsrc/operator/prim_structures.cc
+1
-1
mindspore/ccsrc/utils/convert_utils_base.h
mindspore/ccsrc/utils/convert_utils_base.h
+8
-8
未找到文件。
mindspore/ccsrc/kernel/aicpu/aicpu_kernel_build.cc
浏览文件 @
fb90ff16
...
...
@@ -67,13 +67,13 @@ bool SetIOIputSize(const std::shared_ptr<AnfNode> &anf_node, const size_t &input
MS_EXCEPTION_IF_NULL
(
type_ptr
);
int64_t
size_i
=
1
;
for
(
size_t
j
=
0
;
j
<
shape_i
.
size
();
j
++
)
{
LongMulWithOverflowCheck
(
size_i
,
static_cast
<
int
>
(
shape_i
[
j
]),
&
size_i
);
size_i
=
LongMulWithOverflowCheck
(
size_i
,
static_cast
<
int
>
(
shape_i
[
j
])
);
}
size_t
type_byte
=
GetTypeByte
(
type_ptr
);
if
(
type_byte
==
0
)
{
return
false
;
}
LongMulWithOverflowCheck
(
size_i
,
SizeToInt
(
type_byte
),
&
size_i
);
size_i
=
LongMulWithOverflowCheck
(
size_i
,
SizeToInt
(
type_byte
)
);
input_size_list
->
push_back
(
LongToSize
(
size_i
));
}
}
...
...
@@ -99,13 +99,13 @@ bool SetIOSize(const std::shared_ptr<AnfNode> &anf_node, const std::shared_ptr<A
MS_EXCEPTION_IF_NULL
(
type_ptr
);
int64_t
size_i
=
1
;
for
(
size_t
j
=
0
;
j
<
shape_i
.
size
();
j
++
)
{
LongMulWithOverflowCheck
(
size_i
,
static_cast
<
int
>
(
shape_i
[
j
]),
&
size_i
);
size_i
=
LongMulWithOverflowCheck
(
size_i
,
static_cast
<
int
>
(
shape_i
[
j
])
);
}
size_t
type_byte
=
GetTypeByte
(
type_ptr
);
if
(
type_byte
==
0
)
{
return
false
;
}
LongMulWithOverflowCheck
(
size_i
,
SizeToInt
(
type_byte
),
&
size_i
);
size_i
=
LongMulWithOverflowCheck
(
size_i
,
SizeToInt
(
type_byte
)
);
output_size_list
.
push_back
(
LongToSize
(
size_i
));
}
kernel_mod_ptr
->
SetOutputSizeList
(
output_size_list
);
...
...
mindspore/ccsrc/operator/prim_structures.cc
浏览文件 @
fb90ff16
...
...
@@ -587,7 +587,7 @@ AbstractBasePtr InferImplShapeMul(const AnalysisEnginePtr &, const PrimitivePtr
int
result
=
1
;
for
(
size_t
i
=
0
;
i
<
shpx_data
.
size
();
i
++
)
{
int
value
=
GetValue
<
int
>
(
shpx_data
[
i
]);
IntMulWithOverflowCheck
(
result
,
value
,
&
result
);
result
=
IntMulWithOverflowCheck
(
result
,
value
);
}
auto
result_v
=
MakeValue
(
result
);
...
...
mindspore/ccsrc/utils/convert_utils_base.h
浏览文件 @
fb90ff16
...
...
@@ -91,26 +91,26 @@ inline unsigned int UlongToUint(size_t u) {
return
static_cast
<
unsigned
int
>
(
u
);
}
inline
void
IntMulWithOverflowCheck
(
int
a
,
int
b
,
int
*
c
)
{
inline
int
IntMulWithOverflowCheck
(
int
a
,
int
b
)
{
int
out
=
a
*
b
;
if
(
a
!=
0
)
{
bool
o
k
=
((
out
/
a
)
!=
b
);
if
(
o
k
)
{
bool
o
verflow
=
((
out
/
a
)
!=
b
);
if
(
o
verflow
)
{
MS_LOG
(
EXCEPTION
)
<<
"Mul: a("
<<
a
<<
") * b("
<<
b
<<
") result is overflow"
;
}
}
*
c
=
out
;
return
out
;
}
inline
void
LongMulWithOverflowCheck
(
int64_t
a
,
int64_t
b
,
int64_t
*
c
)
{
inline
int64_t
LongMulWithOverflowCheck
(
int64_t
a
,
int64_t
b
)
{
int64_t
out
=
a
*
b
;
if
(
a
!=
0
)
{
bool
o
k
=
((
out
/
a
)
!=
b
);
if
(
o
k
)
{
bool
o
verflow
=
((
out
/
a
)
!=
b
);
if
(
o
verflow
)
{
MS_LOG
(
EXCEPTION
)
<<
"Mul: a("
<<
a
<<
") * b("
<<
b
<<
") result is overflow"
;
}
}
*
c
=
out
;
return
out
;
}
inline
size_t
SizetMulWithOverflowCheck
(
size_t
a
,
size_t
b
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录