Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
magicwindyyd
mindspore
提交
015613d9
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看板
提交
015613d9
编写于
8月 28, 2020
作者:
S
shenwei41
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Alarm modification
上级
a8c5dfae
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
12 addition
and
0 deletion
+12
-0
mindspore/ccsrc/minddata/dataset/callback/callback_manager.h
mindspore/ccsrc/minddata/dataset/callback/callback_manager.h
+2
-0
mindspore/ccsrc/minddata/dataset/callback/callback_param.h
mindspore/ccsrc/minddata/dataset/callback/callback_param.h
+2
-0
mindspore/ccsrc/minddata/dataset/callback/py_ds_callback.h
mindspore/ccsrc/minddata/dataset/callback/py_ds_callback.h
+2
-0
mindspore/ccsrc/minddata/dataset/engine/cache/cache_client.h
mindspore/ccsrc/minddata/dataset/engine/cache/cache_client.h
+2
-0
mindspore/ccsrc/minddata/dataset/engine/cache/cache_server.h
mindspore/ccsrc/minddata/dataset/engine/cache/cache_server.h
+2
-0
mindspore/ccsrc/minddata/dataset/engine/gnn/graph_data_server.h
...ore/ccsrc/minddata/dataset/engine/gnn/graph_data_server.h
+2
-0
未找到文件。
mindspore/ccsrc/minddata/dataset/callback/callback_manager.h
浏览文件 @
015613d9
...
...
@@ -35,6 +35,8 @@ class CallbackManager {
/// \brief CallbackManager default constructor. Init needs to be called before using the created instance.
CallbackManager
()
:
enabled_
(
false
)
{}
~
CallbackManager
()
=
default
;
/// \brief
/// \param [in] callbacks list of callbacks to perform
void
AddCallbacks
(
std
::
vector
<
std
::
shared_ptr
<
DSCallback
>>
callbacks
);
...
...
mindspore/ccsrc/minddata/dataset/callback/callback_param.h
浏览文件 @
015613d9
...
...
@@ -29,6 +29,8 @@ class CallbackParam {
CallbackParam
(
int64_t
epoch_num
,
int64_t
cur_epoch_step
,
int64_t
total_step_num
)
:
cur_epoch_num_
(
epoch_num
),
cur_epoch_step_num_
(
cur_epoch_step
),
cur_step_num_
(
total_step_num
)
{}
~
CallbackParam
()
=
default
;
// these are constant public fields for easy access and consistency with python cb_param
// the names and orders are consistent with batchInfo
const
int64_t
cur_epoch_num_
;
// current epoch
...
...
mindspore/ccsrc/minddata/dataset/callback/py_ds_callback.h
浏览文件 @
015613d9
...
...
@@ -42,6 +42,8 @@ class PyDSCallback : public DSCallback {
epoch_end_needed_
(
false
),
step_end_needed_
(
false
)
{}
~
PyDSCallback
()
=
default
;
void
setBegin
(
py
::
function
f
);
void
setEnd
(
py
::
function
f
);
void
setEpochBegin
(
py
::
function
f
);
...
...
mindspore/ccsrc/minddata/dataset/engine/cache/cache_client.h
浏览文件 @
015613d9
...
...
@@ -52,6 +52,8 @@ class CacheClient {
prefetch_size_
=
20
;
// rows_per_buf is too small (1 by default).
}
~
Builder
()
=
default
;
/// Setter function to set the session id
/// \param session_id
/// \return Builder object itself.
...
...
mindspore/ccsrc/minddata/dataset/engine/cache/cache_server.h
浏览文件 @
015613d9
...
...
@@ -49,6 +49,8 @@ class CacheServer : public Service {
public:
Builder
()
:
top_
(
"/tmp"
),
num_workers_
(
32
),
port_
(
50052
),
shared_memory_sz_in_gb_
(
4
)
{}
~
Builder
()
=
default
;
/// \brief Getter functions
const
std
::
string
&
getTop
()
const
{
return
top_
;
}
int32_t
getNumWorkers
()
const
{
return
num_workers_
;
}
...
...
mindspore/ccsrc/minddata/dataset/engine/gnn/graph_data_server.h
浏览文件 @
015613d9
...
...
@@ -164,6 +164,8 @@ class GraphDataGrpcServer : public GrpcAsyncServer {
GraphDataGrpcServer
(
const
std
::
string
&
host
,
int32_t
port
,
GraphDataServiceImpl
*
service_impl
)
:
GrpcAsyncServer
(
host
,
port
),
service_impl_
(
service_impl
)
{}
~
GraphDataGrpcServer
()
=
default
;
Status
RegisterService
(
grpc
::
ServerBuilder
*
builder
)
{
builder
->
RegisterService
(
&
svc_
);
return
Status
::
OK
();
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录