Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
0aa8881a
P
Paddle-Lite
项目概览
PaddlePaddle
/
Paddle-Lite
通知
331
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看板
提交
0aa8881a
编写于
12月 19, 2019
作者:
石
石晓伟
提交者:
GitHub
12月 19, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix cmake flaws, test=develop (#2468)
上级
62044067
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
11 addition
and
11 deletion
+11
-11
cmake/cudnn.cmake
cmake/cudnn.cmake
+3
-4
lite/tools/debug/CMakeLists.txt
lite/tools/debug/CMakeLists.txt
+5
-4
lite/tools/debug/debug_utils.h
lite/tools/debug/debug_utils.h
+3
-3
未找到文件。
cmake/cudnn.cmake
浏览文件 @
0aa8881a
...
@@ -32,10 +32,9 @@ list(APPEND CUDNN_CHECK_LIBRARY_DIRS
...
@@ -32,10 +32,9 @@ list(APPEND CUDNN_CHECK_LIBRARY_DIRS
$ENV{CUDNN_ROOT}/lib64
$ENV{CUDNN_ROOT}/lib64
$ENV{CUDNN_ROOT}/lib
$ENV{CUDNN_ROOT}/lib
/usr/lib
/usr/lib
${
CUDA_TOOLKIT_ROOT_DIR
}
${
CUDA_TOOLKIT_ROOT_DIR
}
${
CUDA_TOOLKIT_ROOT_DIR
}
/lib/x64
${
CUDA_TOOLKIT_ROOT_DIR
}
/lib/x64
${
CUDA_TOOLKIT_ROOT_DIR
}
/lib64
${
CUDA_TOOLKIT_ROOT_DIR
}
/lib64
)
)
if
((
${
CUDA_VERSION
}
GREATER 10.0
)
OR
(
${
CUDA_VERSION
}
EQUAL 10.0
))
if
((
${
CUDA_VERSION
}
GREATER 10.0
)
OR
(
${
CUDA_VERSION
}
EQUAL 10.0
))
find_library
(
CUBLAS_LIBRARY NAMES libcublas.so PATHS
${
CUDNN_CHECK_LIBRARY_DIRS
}
NO_DEFAULT_PATH
)
find_library
(
CUBLAS_LIBRARY NAMES libcublas.so PATHS
${
CUDNN_CHECK_LIBRARY_DIRS
}
NO_DEFAULT_PATH
)
...
...
lite/tools/debug/CMakeLists.txt
浏览文件 @
0aa8881a
lite_cc_library
(
debug_utils SRCS debug_utils.cc DEPS op_params model_parser
)
if
(
NOT LITE_ON_MODEL_OPTIMIZE_TOOL
)
return
()
endif
()
if
(
LITE_WITH_LIGHT_WEIGHT_FRAMEWORK OR LITE_ON_MODEL_OPTIMIZE_TOOL
)
lite_cc_library
(
debug_utils SRCS debug_utils.cc DEPS op_params model_parser
)
lite_cc_binary
(
lite_model_debug_tool SRCS model_debug_tool.cc
lite_cc_binary
(
lite_model_debug_tool SRCS model_debug_tool.cc
DEPS
DEPS
cxx_api
cxx_api
debug_utils
debug_utils
...
@@ -16,4 +18,3 @@ if(LITE_WITH_LIGHT_WEIGHT_FRAMEWORK OR LITE_ON_MODEL_OPTIMIZE_TOOL)
...
@@ -16,4 +18,3 @@ if(LITE_WITH_LIGHT_WEIGHT_FRAMEWORK OR LITE_ON_MODEL_OPTIMIZE_TOOL)
XPU_DEPS
${
xpu_kernels
}
XPU_DEPS
${
xpu_kernels
}
FPGA_DEPS
${
fpga_kernels
}
FPGA_DEPS
${
fpga_kernels
}
CL_DEPS
${
opencl_kernels
}
)
CL_DEPS
${
opencl_kernels
}
)
endif
()
lite/tools/debug/debug_utils.h
浏览文件 @
0aa8881a
...
@@ -27,7 +27,7 @@
...
@@ -27,7 +27,7 @@
#include "lite/model_parser/pb/var_desc.h"
#include "lite/model_parser/pb/var_desc.h"
#include "lite/utils/all.h"
#include "lite/utils/all.h"
DEFINE_string
(
model_
path
,
""
,
"Model dir path"
);
DEFINE_string
(
model_
dir
,
""
,
"Model dir path"
);
DEFINE_string
(
input_file
,
""
,
"Input datas file path"
);
DEFINE_string
(
input_file
,
""
,
"Input datas file path"
);
DEFINE_string
(
topo_output_file
,
""
,
"Runtime topology order output file path"
);
DEFINE_string
(
topo_output_file
,
""
,
"Runtime topology order output file path"
);
DEFINE_bool
(
output_topo
,
true
,
"Dump runtime topology or not"
);
DEFINE_bool
(
output_topo
,
true
,
"Dump runtime topology or not"
);
...
@@ -185,7 +185,7 @@ void ParseConfig(DebugConfig* conf) {
...
@@ -185,7 +185,7 @@ void ParseConfig(DebugConfig* conf) {
CHECK
(
conf
);
CHECK
(
conf
);
#define CHECK_NON_EMPTY(name__) \
#define CHECK_NON_EMPTY(name__) \
CHECK(!FLAGS_##name__.empty()) << "Option " << #name__ << " can't be empty."
CHECK(!FLAGS_##name__.empty()) << "Option " << #name__ << " can't be empty."
CHECK_NON_EMPTY
(
model_
path
);
CHECK_NON_EMPTY
(
model_
dir
);
if
(
FLAGS_output_topo
)
{
if
(
FLAGS_output_topo
)
{
CHECK_NON_EMPTY
(
topo_output_file
);
CHECK_NON_EMPTY
(
topo_output_file
);
}
}
...
@@ -193,7 +193,7 @@ void ParseConfig(DebugConfig* conf) {
...
@@ -193,7 +193,7 @@ void ParseConfig(DebugConfig* conf) {
CHECK_NON_EMPTY
(
tensor_output_file
);
CHECK_NON_EMPTY
(
tensor_output_file
);
}
}
#undef CHECK_NON_EMPTY
#undef CHECK_NON_EMPTY
conf
->
model_dir
=
FLAGS_model_
path
;
conf
->
model_dir
=
FLAGS_model_
dir
;
conf
->
topo_output_file
=
FLAGS_topo_output_file
;
conf
->
topo_output_file
=
FLAGS_topo_output_file
;
conf
->
tensor_output_file
=
FLAGS_tensor_output_file
;
conf
->
tensor_output_file
=
FLAGS_tensor_output_file
;
conf
->
input_file
=
FLAGS_input_file
;
conf
->
input_file
=
FLAGS_input_file
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录