This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
Huawei_Technology
/
mindspore
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
13
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
fix config::load error message
tags/v1.1.0
Xiao Tianci
5 years ago
parent
6406cd2a3c
commit
e3c4a54fef
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
mindspore/ccsrc/minddata/dataset/api/config.cc
+ 1
- 1
mindspore/ccsrc/minddata/dataset/api/config.cc
View File
@@ -97,7 +97,7 @@ int32_t get_callback_timeout() { return _config->callback_timeout(); }
bool load(std::string file) {
Status rc = _config->LoadFile(file);
if (rc.IsError()) {
MS_LOG(ERROR) <<
"Configuration file loads failed: "
<< file;
MS_LOG(ERROR) <<
rc
<< file;
return false;
}
return true;
Write
Preview
Loading…
Cancel
Save