Skip to content

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

P
Paddle-Lite
  • 项目概览

PaddlePaddle / Paddle-Lite

通知 337
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] Fix the issue that `CreatePaddlePredictor` method is not safe for multi-thread condition !4014

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

Created by: DannyIsFunny

【Issue】 Unknown segmentation error may occur when we use multi-thread to create many predictors at the same time. eg.

#include <iostream>
#include <vector>
#include "paddle_api.h"  // NOLINT
#include <unistd.h>
#include <pthread.h>

using namespace paddle::lite_api;  // NOLINT

#define NUM_THREADS     2

struct thread_data{
   int  thread_id;
   char *message;
};

int64_t ShapeProduction(const shape_t& shape) {
  int64_t res = 1;
  for (auto i : shape) res *= i;
  return res;
}
void* RunModel(void*arg) {
  for(int i =0; i < 10; i++) {
    // 1. Create CxxConfig
    std::string model_dir = "mobilenet_v1";
    CxxConfig config;
    config.set_model_dir(model_dir);
    config.set_valid_places({Place{TARGET(kX86), PRECISION(kFloat)},
                             Place{TARGET(kHost), PRECISION(kFloat)}});
    // 2. Create PaddlePredictor by CxxConfig
    std::shared_ptr<PaddlePredictor> predictor1 =
        CreatePaddlePredictor<CxxConfig>(config);
    std::cout << "Succeed!" << std::endl;
  }
    return 0;
}

int main(int argc, char** argv) {
  if (argc < 2) {
    std::cerr << "[ERROR] usage: ./" << argv[0] << " naive_buffer_model_dir\n";
    exit(1);
  }
  std::string model_dir = argv[1];

   pthread_t threads[NUM_THREADS];
   struct thread_data td[NUM_THREADS];
   int rc;
   int i;

   for( i=0; i < NUM_THREADS; i++ ){
      std::cout <<"main() : creating thread, " << i << std::endl;
      td[i].thread_id = i;
      td[i].message = (char*)"This is message";
      rc = pthread_create(&threads[i], NULL,
                          RunModel, NULL);
      if (rc){
         std::cout << "Error:unable to create thread," << rc << std::endl;
         exit(-1);
      }
   }
   pthread_exit(NULL);

  return 0;
}

【Reason】CreatePaddlePredictor method is not safe for multi-thread condition. Further more, we have located that inside optimizer->GenRuntimeProgram() has caused this problem. 【Effect of Current PR】 Add thread lock to CreatePaddlePredictor, so that CreatePaddlePredictor method will be operated sequently in multi-thread program to avoid unknown error.

指派人
分配到
审核者
Request review from
无
里程碑
无
分配里程碑
工时统计
标识: paddlepaddle/Paddle-Lite!4014
Source branch: github/fork/DannyIsFunny/multi_thread
渝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