Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
机器未来
Paddle
提交
52a1e019
P
Paddle
项目概览
机器未来
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
52a1e019
编写于
5月 17, 2017
作者:
L
liaogang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Define cc_xxx to simplify cmake
上级
0fdbd40f
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
82 addition
and
50 deletion
+82
-50
CMakeLists.txt
CMakeLists.txt
+1
-0
cmake/generic.cmake
cmake/generic.cmake
+77
-0
paddle/majel/CMakeLists.txt
paddle/majel/CMakeLists.txt
+1
-40
paddle/majel/test/CMakeLists.txt
paddle/majel/test/CMakeLists.txt
+3
-10
未找到文件。
CMakeLists.txt
浏览文件 @
52a1e019
...
...
@@ -92,6 +92,7 @@ include(external/swig) # download, build, install swig
include
(
external/warpctc
)
# download, build, install warpctc
include
(
external/any
)
# download libn::any
include
(
generic
)
# simplify cmake module
include
(
package
)
# set paddle packages
include
(
cpplint
)
# set paddle c++ style
include
(
ccache
)
# set ccache for compilation
...
...
cmake/generic.cmake
0 → 100644
浏览文件 @
52a1e019
# Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# To simplify the build process of PaddlePaddle, we defined couple of
# fundamental abstractions, e.g., how to build library, binary and
# test in C++, CUDA and Go.
#
# -------------------------------------------
# C++ CUDA C++ Go
# -------------------------------------------
# cc_library nv_library go_library
# cc_binary nv_binary go_binary
# cc_test nv_test go_test
# -------------------------------------------
# cc_binary parses tensor.cc and figures out that target also depend on tensor.h.
# cc_binary(tensor
# SRCS
# tensor.cc)
function
(
cc_binary TARGET_NAME
)
set
(
options OPTIONAL
)
set
(
oneValueArgs
""
)
set
(
multiValueArgs SRCS DEPS
)
cmake_parse_arguments
(
cc_binary
"
${
options
}
"
"
${
oneValueArgs
}
"
"
${
multiValueArgs
}
"
${
ARGN
}
)
add_executable
(
${
TARGET_NAME
}
${
cc_binary_SRCS
}
)
add_dependencies
(
${
TARGET_NAME
}
${
cc_binary_DEPS
}
${
external_project_dependencies
}
)
target_link_libraries
(
${
TARGET_NAME
}
${
cc_binary_DEPS
}
)
endfunction
(
cc_binary
)
# cc_library parses tensor.cc and figures out that target also depend on tensor.h.
# cc_library(tensor
# SRCS
# tensor.cc
# DEPS
# variant)
function
(
cc_library TARGET_NAME
)
set
(
options OPTIONAL
)
set
(
oneValueArgs
""
)
set
(
multiValueArgs SRCS DEPS
)
cmake_parse_arguments
(
cc_library
"
${
options
}
"
"
${
oneValueArgs
}
"
"
${
multiValueArgs
}
"
${
ARGN
}
)
if
(
${
cc_library_OPTIONAL
}
STREQUAL
"STATIC"
)
add_library
(
${
TARGET_NAME
}
STATIC
${
cc_library_SRCS
}
)
else
()
add_library
(
${
TARGET_NAME
}
SHARED
${
cc_library_SRCS
}
)
endif
()
add_dependencies
(
${
TARGET_NAME
}
${
cc_library_DEPS
}
${
external_project_dependencies
}
)
endfunction
(
cc_library
)
# The dependency to target tensor implies that if any of
# tensor{.h,.cc,_test.cc} is changed, tensor_test need to be re-built.
# cc_test(tensor_test
# SRCS
# tensor_test.cc
# DEPS
# tensor)
function
(
cc_test TARGET_NAME
)
set
(
options
""
)
set
(
oneValueArgs
""
)
set
(
multiValueArgs SRCS DEPS
)
cmake_parse_arguments
(
cc_test
"
${
options
}
"
"
${
oneValueArgs
}
"
"
${
multiValueArgs
}
"
${
ARGN
}
)
add_executable
(
${
TARGET_NAME
}
${
cc_test_SRCS
}
)
add_dependencies
(
${
TARGET_NAME
}
${
cc_test_DEPS
}
${
external_project_dependencies
}
)
target_link_libraries
(
${
TARGET_NAME
}
${
cc_test_DEPS
}
${
GTEST_MAIN_LIBRARIES
}
${
GTEST_LIBRARIES
}
)
add_test
(
${
TARGET_NAME
}
${
TARGET_NAME
}
)
endfunction
(
cc_test
)
paddle/majel/CMakeLists.txt
浏览文件 @
52a1e019
cmake_minimum_required
(
VERSION 3.0
)
if
(
${
CMAKE_CURRENT_SOURCE_DIR
}
STREQUAL
${
CMAKE_SOURCE_DIR
}
)
# find #include <majel/xx.h>
get_filename_component
(
PARENT_DIR
${
CMAKE_CURRENT_SOURCE_DIR
}
DIRECTORY
)
include_directories
(
${
PARENT_DIR
}
)
# find cmake directory modules
get_filename_component
(
PARENT_DIR
${
PARENT_DIR
}
DIRECTORY
)
set
(
CMAKE_MODULE_PATH
${
CMAKE_MODULE_PATH
}
"
${
PARENT_DIR
}
/cmake"
)
# enable boost
find_package
(
Boost REQUIRED
)
if
(
NOT Boost_FOUND
)
message
(
FATAL
"Cannot find Boost library."
)
endif
()
include_directories
(
${
Boost_INCLUDE_DIRS
}
)
# enable c++11
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-std=c++11"
)
# enable gtest
set
(
THIRD_PARTY_PATH
${
CMAKE_CURRENT_SOURCE_DIR
}
/third_party
)
set
(
WITH_TESTING ON
)
include
(
external/gtest
)
else
()
message
(
"-- Found gtest (include:
${
GTEST_INCLUDE_DIR
}
, library:
${
GTEST_LIBRARIES
}
)"
)
endif
()
########################### Build Majel #############################
set
(
MAJEL_CXX_FILES place.cc
)
set
(
MAJEL_CUDA_FILES
""
)
if
(
CUDA_FOUND
)
cuda_add_library
(
majel
${
MAJEL_CUDA_FILES
}
${
MAJEL_CXX_FILES
}
)
else
()
add_library
(
majel
${
MAJEL_CXX_FILES
}
)
endif
()
add_dependencies
(
majel
${
external_project_dependencies
}
)
#####################################################################
cc_library
(
majel SRCS place.cc
)
if
(
WITH_TESTING
)
add_subdirectory
(
test
)
...
...
paddle/majel/test/CMakeLists.txt
浏览文件 @
52a1e019
file
(
GLOB_RECURSE ALL_TEST_FILES RELATIVE
"
${
CMAKE_CURRENT_SOURCE_DIR
}
"
"*.cc"
)
add_executable
(
majel_tests
${
ALL_TEST_FILES
}
)
add_dependencies
(
majel_tests majel
)
target_link_libraries
(
majel_tests
${
GTEST_LIBRARIES
}
${
GTEST_MAIN_LIBRARIES
}
majel
)
add_test
(
majel_tests majel_tests
)
cc_test
(
place_test
SRCS place_test.cc
DEPS majel
)
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录