Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
dba1cd27
S
Serving
项目概览
PaddlePaddle
/
Serving
大约 1 年 前同步成功
通知
186
Star
833
Fork
253
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
105
列表
看板
标记
里程碑
合并请求
10
Wiki
2
Wiki
分析
仓库
DevOps
项目成员
Pages
S
Serving
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
105
Issue
105
列表
看板
标记
里程碑
合并请求
10
合并请求
10
Pages
分析
分析
仓库分析
DevOps
Wiki
2
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
dba1cd27
编写于
7月 25, 2019
作者:
W
wangguibao
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'ctr_model_serving' of
https://github.com/wangguibao/Serving
into ctr_model_serving
上级
ea9e0a07
5e6ac3e0
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
68 addition
and
0 deletion
+68
-0
demo-serving/scripts/start.sh
demo-serving/scripts/start.sh
+1
-0
predictor/build.sh
predictor/build.sh
+67
-0
未找到文件。
demo-serving/scripts/start.sh
0 → 100755
浏览文件 @
dba1cd27
/home/work/image-class/bin/image_class
--workflow_path
=
/home/work/image-class/conf/
--inferservice_path
=
/home/work/image-class/conf/
--logger_path
=
/home/work/image-class/conf/
--resource_path
=
/home/work/image-class/conf/
predictor/build.sh
0 → 100755
浏览文件 @
dba1cd27
#!/bin/bash
function
install_pdserving_lib
(){
ret
=
1
local
pdserving_lib_mode
=
$1
case
$pdserving_lib_mode
in
local
)
local
pdserving_local_path
=
$2
if
[
!
-d
$pdserving_local_path
]
;
then
echo
"[WARN failed to find local path]"
return
ret
fi
lib_name
=
`
basename
$pdserving_local_path
`
if
[
-d
${
CITOOLS
}
/
$lib_name
]
;
then
rm
-rf
${
CITOOLS
}
/
$lib_name
fi
cp
-rf
$pdserving_local_path
${
CITOOLS
}
/
source
${
CITOOLS
}
/
$lib_name
/predictor_build_lib.sh
;;
ftp
)
local
wgetOptions
=
"--tries=3 --retry-connrefused -r -l0 -nv --limit-rate=50m -nH --cut-dirs=5"
pdserving_lib_ftp_path
=
"ftp://tc-orp-app2.tc.baidu.com:/home/heqing/scmbak/common_lib/pdserving_cts/pdserving_lib"
lib_name
=
`
basename
$pdserving_lib_ftp_path
`
if
[
-d
${
CITOOLS
}
/
$lib_name
]
;
then
rm
-rf
${
CITOOLS
}
/
$lib_name
fi
echo
"wget cmd is :
$wgetOptions
$pdserving_lib_ftp_path
"
echo
"lib_name is :
${
lib_name
}
"
wget
$wgetOptions$cur_dirs
$pdserving_lib_ftp_path
mv
${
lib_name
}
${
CITOOLS
}
/
source
${
CITOOLS
}
/
${
lib_name
}
/predictor_build_lib.sh
;;
*
)
ret
=
0
echo
"todo"
;;
esac
return
$ret
}
CUR_PATH
=
$(
pwd
)
WORK_PATH
=
$(
pwd
)
WORK_ROOT
=
${
WORK_PATH
%%/baidu/*
}
#co citools
CITOOLS
=
"
${
WORK_ROOT
}
/baidu/fengchao-qa/citools"
if
[
-d
${
CITOOLS
}
]
;
then
rm
-rf
${
CITOOLS
}
fi
git clone
--depth
1 ssh://git@icode.baidu.com:8235/baidu/fengchao-qa/citools
$CITOOLS
>
/dev/null
[[
$?
!=
0
]]
&&
exit
1
source
$CITOOLS
/lib/localbuild_lib.sh
#source过后路径可能改变,需要重新赋值
CITOOLS
=
"
${
WORK_ROOT
}
/baidu/fengchao-qa/citools"
#install_pdserving_lib
pdserving_lib_mode
=
"ftp"
install_pdserving_lib
${
pdserving_lib_mode
}
#两种模式:如果是local,需要指定本机上pdserving_lib的路径
#source ${CITOOLS}/pdserving_lib/predictor_build_lib.sh
COVMODULEID
=
8652
TYPE
=
framework
#执行本模块构建初始化
predictor_build_init
WORKROOT
=
$WORK_ROOT
#执行构建命令
predictor_build_do
$@
exit
0
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录