Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
机器未来
Paddle
提交
e72b865c
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,发现更多精彩内容 >>
未验证
提交
e72b865c
编写于
12月 13, 2017
作者:
T
Tao Luo
提交者:
GitHub
12月 13, 2017
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #6530 from luotao1/atlas
remove ATLAS library
上级
0a8addf8
e5dcefc4
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
3 addition
and
39 deletion
+3
-39
README.md
README.md
+1
-1
cmake/cblas.cmake
cmake/cblas.cmake
+1
-37
paddle/math/tests/test_matrixCompare.cpp
paddle/math/tests/test_matrixCompare.cpp
+1
-1
未找到文件。
README.md
浏览文件 @
e72b865c
...
@@ -36,7 +36,7 @@ Please refer to our [release announcement](https://github.com/PaddlePaddle/Paddl
...
@@ -36,7 +36,7 @@ Please refer to our [release announcement](https://github.com/PaddlePaddle/Paddl
examples:
examples:
- Optimized math operations through SSE/AVX intrinsics, BLAS libraries
- Optimized math operations through SSE/AVX intrinsics, BLAS libraries
(e.g. MKL,
AT
LAS, cuBLAS) or customized CPU/GPU kernels.
(e.g. MKL,
OpenB
LAS, cuBLAS) or customized CPU/GPU kernels.
- Highly optimized recurrent networks which can handle **variable-length**
- Highly optimized recurrent networks which can handle **variable-length**
sequence without padding.
sequence without padding.
- Optimized local and distributed training for models with high dimensional
- Optimized local and distributed training for models with high dimensional
...
...
cmake/cblas.cmake
浏览文件 @
e72b865c
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
# It will search MKLML, atlas, OpenBlas, reference-cblas in order.
# It will search MKLML, atlas, OpenBlas, reference-cblas in order.
#
#
# If any cblas implementation found, the following variable will be set.
# If any cblas implementation found, the following variable will be set.
# CBLAS_PROVIDER # one of MKLML,
ATLAS,
OPENBLAS, REFERENCE
# CBLAS_PROVIDER # one of MKLML, OPENBLAS, REFERENCE
# CBLAS_INC_DIR # the include directory for cblas.
# CBLAS_INC_DIR # the include directory for cblas.
# CBLAS_LIBS # a list of libraries should be linked by paddle.
# CBLAS_LIBS # a list of libraries should be linked by paddle.
# # Each library should be full path to object file.
# # Each library should be full path to object file.
...
@@ -25,42 +25,6 @@ if(WITH_MKLML AND MKLML_INC_DIR AND MKLML_LIB)
...
@@ -25,42 +25,6 @@ if(WITH_MKLML AND MKLML_INC_DIR AND MKLML_LIB)
return
()
return
()
endif
()
endif
()
## Then find atlas.
set
(
ATLAS_ROOT $ENV{ATLAS_ROOT} CACHE PATH
"Folder contains Atlas"
)
set
(
ATLAS_INCLUDE_SEARCH_PATHS
${
ATLAS_ROOT
}
/include
/usr/include
/usr/include/atlas
)
set
(
ATLAS_LIB_SEARCH_PATHS
${
ATLAS_ROOT
}
/lib
/usr/lib
/usr/lib/blas/atlas
/usr/lib/atlas
/usr/lib/atlas-base
# special for ubuntu 14.04.
)
find_path
(
ATLAS_INC_DIR NAMES cblas.h
PATHS
${
ATLAS_INCLUDE_SEARCH_PATHS
}
)
find_path
(
ATLAS_CLAPACK_INC_DIR NAMES clapack.h
PATHS
${
ATLAS_INCLUDE_SEARCH_PATHS
}
)
find_library
(
ATLAS_CBLAS_LIB NAMES cblas libcblas.so.3
PATHS
${
ATLAS_LIB_SEARCH_PATHS
}
)
find_library
(
ATLAS_CLAPACK_LIB NAMES lapack_atlas liblapack_atlas.so.3
PATHS
${
ATLAS_LIB_SEARCH_PATHS
}
)
if
(
ATLAS_CLAPACK_INC_DIR AND ATLAS_INC_DIR AND ATLAS_CBLAS_LIB AND ATLAS_CLAPACK_LIB
)
set
(
CBLAS_FOUND ON
)
set
(
CBLAS_PROVIDER ATLAS
)
set
(
CBLAS_INC_DIR
${
ATLAS_INC_DIR
}
${
ATLAS_CLAPACK_INC_DIR
}
)
set
(
CBLAS_LIBRARIES
${
ATLAS_CLAPACK_LIB
}
${
ATLAS_CBLAS_LIB
}
)
add_definitions
(
-DPADDLE_USE_ATLAS
)
add_definitions
(
-DLAPACK_FOUND
)
message
(
STATUS
"Found ATLAS (include:
${
ATLAS_INC_DIR
}
, library:
${
CBLAS_LIBRARIES
}
)"
)
message
(
STATUS
"Found lapack in ATLAS (include:
${
ATLAS_CLAPACK_INC_DIR
}
)"
)
return
()
endif
()
## Then find openblas.
## Then find openblas.
set
(
OPENBLAS_ROOT $ENV{OPENBLAS_ROOT} CACHE PATH
"Folder contains Openblas"
)
set
(
OPENBLAS_ROOT $ENV{OPENBLAS_ROOT} CACHE PATH
"Folder contains Openblas"
)
set
(
OPENBLAS_INCLUDE_SEARCH_PATHS
set
(
OPENBLAS_INCLUDE_SEARCH_PATHS
...
...
paddle/math/tests/test_matrixCompare.cpp
浏览文件 @
e72b865c
...
@@ -244,7 +244,7 @@ TEST(Matrix, unary) {
...
@@ -244,7 +244,7 @@ TEST(Matrix, unary) {
LOG
(
WARNING
)
<<
"This version of PaddlePaddle was not built with LAPACK"
LOG
(
WARNING
)
<<
"This version of PaddlePaddle was not built with LAPACK"
<<
"support so we cannot test matrix inverse. To test "
<<
"support so we cannot test matrix inverse. To test "
<<
"matrix inverse, please install LAPACKE "
<<
"matrix inverse, please install LAPACKE "
<<
"and MKL/Openblas
/ATLAS
, and re-build PaddlePaddle."
;
<<
"and MKL/Openblas, and re-build PaddlePaddle."
;
#endif
#endif
}
}
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录