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
!4420
[MS][LITE][Develop]remove the operation of free the tmp buffer when run over
Merge pull request
!4420
from chenjianping/lite_dev
tags/v0.7.0-beta
mindspore-ci-bot
Gitee
5 years ago
parent
d3ef9f77c5
55336214b6
commit
a420a79410
3 changed files
with
0 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-1
mindspore/lite/src/runtime/kernel/arm/fp32/argminmax.cc
+0
-1
mindspore/lite/src/runtime/kernel/arm/fp32/scale.cc
+0
-1
mindspore/lite/src/runtime/kernel/arm/int8/argminmax_int8.cc
+ 0
- 1
mindspore/lite/src/runtime/kernel/arm/fp32/argminmax.cc
View File
@@ -54,7 +54,6 @@ int ArgMinMaxCPUKernel::Run() {
return ret;
}
ret = ArgMinMaxBaseCPUKernel::Run();
ArgMinMaxBaseCPUKernel::FreeTmpMemory();
return ret;
}
} // namespace mindspore::kernel
+ 0
- 1
mindspore/lite/src/runtime/kernel/arm/fp32/scale.cc
View File
@@ -173,7 +173,6 @@ int ScaleCPUKernel::Run() {
MS_LOG(ERROR) << "Scale error error_code[" << ret << "]";
return RET_ERROR;
}
FreeTmpBuffer();
return RET_OK;
}
+ 0
- 1
mindspore/lite/src/runtime/kernel/arm/int8/argminmax_int8.cc
View File
@@ -80,7 +80,6 @@ int ArgMinMaxInt8CPUKernel::Run() {
Int8ArgMinMaxDim3(input_data, output_data, in_shape, param, &in_quant_arg_, &out_quant_arg_);
break;
}
FreeTmpMemory();
return RET_OK;
}
} // namespace mindspore::kernel
Write
Preview
Loading…
Cancel
Save