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 infer tensor compile error
tags/v1.1.0
kswang
5 years ago
parent
a221a1f725
commit
286083faf7
1 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
include/infer_tensor.h
+ 2
- 1
include/infer_tensor.h
View File
@@ -76,7 +76,8 @@ class InferTensorBase {
}
auto ret = memcpy_s(mutable_data(), data_size(), data, data_len);
if (ret != 0) {
MS_LOG(EXCEPTION) << "Set data memcpy_s failed";
MSI_LOG_ERROR << "Set data memcpy_s failed";
return false;
}
return true;
}
Write
Preview
Loading…
Cancel
Save