Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
magicwindyyd
mindspore
提交
82c5daa9
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看板
提交
82c5daa9
编写于
4月 24, 2020
作者:
G
geekun
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix codedex for mindspore/vm,transform,util,operator
上级
db9dd264
变更
9
隐藏空白更改
内联
并排
Showing
9 changed file
with
3 addition
and
10 deletion
+3
-10
mindspore/ccsrc/operator/composite/composite.h
mindspore/ccsrc/operator/composite/composite.h
+0
-1
mindspore/ccsrc/operator/composite/unpack_call.cc
mindspore/ccsrc/operator/composite/unpack_call.cc
+0
-1
mindspore/ccsrc/transform/convert.h
mindspore/ccsrc/transform/convert.h
+0
-1
mindspore/ccsrc/utils/any.cc
mindspore/ccsrc/utils/any.cc
+1
-1
mindspore/ccsrc/utils/callbacks.cc
mindspore/ccsrc/utils/callbacks.cc
+0
-1
mindspore/ccsrc/utils/callbacks_ge.cc
mindspore/ccsrc/utils/callbacks_ge.cc
+0
-1
mindspore/ccsrc/utils/callbacks_ge.h
mindspore/ccsrc/utils/callbacks_ge.h
+0
-2
mindspore/ccsrc/utils/convert_utils.cc
mindspore/ccsrc/utils/convert_utils.cc
+1
-1
mindspore/ccsrc/utils/log_adapter.cc
mindspore/ccsrc/utils/log_adapter.cc
+1
-1
未找到文件。
mindspore/ccsrc/operator/composite/composite.h
浏览文件 @
82c5daa9
...
...
@@ -210,7 +210,6 @@ class TensorSlice : public MetaFuncGraph {
FuncGraphPtr
ExpandADim
(
const
FuncGraphPtr
&
ret_graph
,
const
AnfNodePtr
&
tensor_node
)
const
;
};
using
TensorSlicePtr
=
std
::
shared_ptr
<
TensorSlice
>
;
}
// namespace prim
}
// namespace mindspore
...
...
mindspore/ccsrc/operator/composite/unpack_call.cc
浏览文件 @
82c5daa9
...
...
@@ -89,6 +89,5 @@ REGISTER_PYBIND_DEFINE(UnpackCall_, ([](const py::module *m) {
(
void
)
py
::
class_
<
UnpackCall
,
MetaFuncGraph
,
std
::
shared_ptr
<
UnpackCall
>>
(
*
m
,
"UnpackCall_"
)
.
def
(
py
::
init
<
std
::
string
&>
());
}));
}
// namespace prim
}
// namespace mindspore
mindspore/ccsrc/transform/convert.h
浏览文件 @
82c5daa9
...
...
@@ -252,7 +252,6 @@ class DfGraphConvertor {
bool
training_
=
false
;
bool
distribute_
=
false
;
};
}
// namespace transform
}
// namespace mindspore
...
...
mindspore/ccsrc/utils/any.cc
浏览文件 @
82c5daa9
...
...
@@ -26,7 +26,7 @@ bool AnyIsLiteral(const Any &any) {
static
const
std
::
type_index
typeid_float
=
std
::
type_index
(
typeid
(
float
));
static
const
std
::
type_index
typeid_bool
=
std
::
type_index
(
typeid
(
bool
));
std
::
type_index
typeid_any
=
std
::
type_index
(
any
.
type
());
auto
typeid_any
=
std
::
type_index
(
any
.
type
());
return
typeid_int
==
typeid_any
||
typeid_float
==
typeid_any
||
typeid_bool
==
typeid_any
;
}
...
...
mindspore/ccsrc/utils/callbacks.cc
浏览文件 @
82c5daa9
...
...
@@ -26,7 +26,6 @@
namespace
mindspore
{
namespace
callbacks
{
const
char
PYTHON_MOD_CALLBACK_MODULE
[]
=
"mindspore.train.callback"
;
const
char
PYTHON_FUN_PROCESS_CHECKPOINT
[]
=
"_checkpoint_cb_for_save_op"
;
const
char
PYTHON_FUN_PROCESS_SUMMARY
[]
=
"_summary_cb_for_save_op"
;
...
...
mindspore/ccsrc/utils/callbacks_ge.cc
浏览文件 @
82c5daa9
...
...
@@ -24,7 +24,6 @@
namespace
mindspore
{
namespace
callbacks
{
const
char
PYTHON_MOD_CALLBACK_MODULE
[]
=
"mindspore.train.callback"
;
const
char
PYTHON_FUN_PROCESS_CHECKPOINT
[]
=
"_checkpoint_cb_for_save_op"
;
const
char
PYTHON_FUN_PROCESS_SUMMARY
[]
=
"_summary_cb_for_save_op"
;
...
...
mindspore/ccsrc/utils/callbacks_ge.h
浏览文件 @
82c5daa9
...
...
@@ -26,12 +26,10 @@
namespace
mindspore
{
namespace
callbacks
{
using
mindspore
::
tensor
::
TensorPtr
;
uint32_t
CheckpointSaveCallback
(
uint32_t
,
const
std
::
map
<
std
::
string
,
ge
::
Tensor
>
&
);
uint32_t
SummarySaveCallback
(
uint32_t
,
const
std
::
map
<
std
::
string
,
ge
::
Tensor
>
&
);
}
// namespace callbacks
}
// namespace mindspore
...
...
mindspore/ccsrc/utils/convert_utils.cc
浏览文件 @
82c5daa9
...
...
@@ -335,7 +335,7 @@ py::object VectorRefToPyData(const VectorRef &value_list) {
py
::
object
ret
;
MS_LOG
(
DEBUG
)
<<
"vector_ref"
;
size_t
value_size
=
value_list
.
size
();
py
::
tuple
ref_tuple
=
py
::
tuple
(
value_size
);
auto
ref_tuple
=
py
::
tuple
(
value_size
);
for
(
size_t
i
=
0
;
i
<
value_size
;
i
++
)
{
ref_tuple
[
i
]
=
BaseRefToPyData
(
value_list
[
i
]);
}
...
...
mindspore/ccsrc/utils/log_adapter.cc
浏览文件 @
82c5daa9
...
...
@@ -35,7 +35,7 @@ static std::string GetTime() {
now_time
.
tm_hour
,
now_time
.
tm_min
,
now_time
.
tm_sec
);
#else
struct
timeval
cur_time
;
(
void
)
gettimeofday
(
&
cur_time
,
NULL
);
(
void
)
gettimeofday
(
&
cur_time
,
nullptr
);
struct
tm
now
;
(
void
)
localtime_r
(
&
cur_time
.
tv_sec
,
&
now
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录