Skip to content

  • 体验新版
    • 正在加载...
  • 登录
  • PaddlePaddle
  • Paddle-Lite
  • 合并请求
  • !3959

P
Paddle-Lite
  • 项目概览

PaddlePaddle / Paddle-Lite

通知 338
Star 4
Fork 1
  • 代码
    • 文件
    • 提交
    • 分支
    • Tags
    • 贡献者
    • 分支图
    • Diff
  • Issue 271
    • 列表
    • 看板
    • 标记
    • 里程碑
  • 合并请求 78
  • Wiki 0
    • Wiki
  • 分析
    • 仓库
    • DevOps
  • 项目成员
  • Pages
P
Paddle-Lite
  • 项目概览
    • 项目概览
    • 详情
    • 发布
  • 仓库
    • 仓库
    • 文件
    • 提交
    • 分支
    • 标签
    • 贡献者
    • 分支图
    • 比较
  • Issue 271
    • Issue 271
    • 列表
    • 看板
    • 标记
    • 里程碑
  • 合并请求 78
    • 合并请求 78
  • Pages
  • 分析
    • 分析
    • 仓库分析
    • DevOps
  • Wiki 0
    • Wiki
  • 成员
    • 成员
  • 收起侧边栏
  • 动态
  • 分支图
  • 创建新Issue
  • 提交
  • Issue看板

[Framework]Update Malloc implementation to reduce memory usage of Tensor !3959

  • Report abuse
!3959 已合并 7月 17, 2020 由 saxon_zh@saxon_zh 创建
#<User:0x00007f0e5f9d2d20>
  • 概览 0
  • 提交 1
  • 变更 3

Created by: DannyIsFunny

【Issue】Current Tensor struct will consume almost 120% physical space as referenced to the inside data size.

// Experiment: Create 100 Tensors of 8K byte,800K memory usage in theory. 
// But corresponding malloc procedure will consume 1000K actually.
std::vector<Tensor*> test_tensors;
test_tensors.resize(100);
for(int i = 0; i < 100; i++) {
  test_tensors[i] = new Tensor();
  test_tensors[i]->Resize({2048});
  auto tensor_data = test_tensors[i]->mutable_data<float>();
  for(int j = 0; j < 2048; j++) {
   tensor_data[j] = 1;
  }
}

【Reason】 The implementation of Malloc in Paddle-Lite has assign MALLOC_ALIGN to be 64. The MALLOC_ALIGN in Anakin is 16 and will result in a reduce in Tensor memory usage.

TargetWrapper<TARGET(kHost)>::Malloc(size_t size)

【Effect of Current PR】 Change MALLOC_ALIGN in TargetWrapper<TARGET(kHost)>::Malloc(size_t size) from 64 to 16. Experiment result: The memory consumed by 98 tensors has reduced from 1060KB to 800KB

指派人
分配到
审核者
Request review from
无
里程碑
无
分配里程碑
工时统计
标识: paddlepaddle/Paddle-Lite!3959
Source branch: github/fork/DannyIsFunny/Updata_Malloc
渝ICP备2023009037号

京公网安备11010502055752号

网络110报警服务 Powered by GitLab CE v13.7
开源知识
Git 入门 Pro Git 电子书 在线学 Git
Markdown 基础入门 IT 技术知识开源图谱
帮助
使用手册 反馈建议 博客
《GitCode 隐私声明》 《GitCode 服务条款》 关于GitCode
Powered by GitLab CE v13.7