Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
451ec2df
P
Paddle
项目概览
BaiXuePrincess
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
451ec2df
编写于
9月 30, 2016
作者:
T
Travis CI
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Deploy to GitHub Pages:
2a0a5391
上级
5745c2b8
变更
3
展开全部
显示空白变更内容
内联
并排
Showing
3 changed file
with
42 addition
and
92 deletion
+42
-92
doc/_sources/build/build_from_source.txt
doc/_sources/build/build_from_source.txt
+21
-46
doc/build/build_from_source.html
doc/build/build_from_source.html
+20
-45
doc/searchindex.js
doc/searchindex.js
+1
-1
未找到文件。
doc/_sources/build/build_from_source.txt
浏览文件 @
451ec2df
Installing from Sources
Installing from Sources
=================
=================
=========
* [1. Download and Setup](#download)
* [1. Download and Setup](#download)
* [2. Requirements](#requirements)
* [2. Requirements](#requirements)
...
@@ -28,51 +28,26 @@ To compile the source code, your computer must be equipped with GCC >=4.6 or Cla
...
@@ -28,51 +28,26 @@ To compile the source code, your computer must be equipped with GCC >=4.6 or Cla
PaddlePaddle supports some build options. To enable it, first you need to install the related libraries.
PaddlePaddle supports some build options. To enable it, first you need to install the related libraries.
<style type="text/css">
<html>
.tg {border-collapse:collapse;border-spacing:0;border-color:#ccc;}
<table>
.tg td{font-family:Arial, sans-serif;font-size:14px;padding:10px 5px;border-style:solid;border-width:0px;overflow:hidden;word-break:normal;border-color:#ccc;color:#333;background-color:#fff;border-top-width:1px;border-bottom-width:1px;}
<thead>
.tg th{font-family:Arial, sans-serif;font-size:14px;font-weight:normal;padding:10px 5px;border-style:solid;border-width:0px;overflow:hidden;word-break:normal;border-color:#ccc;color:#333;background-color:#f0f0f0;border-top-width:1px;border-bottom-width:1px;}
<tr>
.tg .tg-yw4l{vertical-align:top}
<th scope="col" class="left">Optional</th>
.tg .tg-9hbo{font-weight:bold;vertical-align:top}
<th scope="col" class="left">Description</th>
</style>
</tr>
<table class="tg">
</thead>
<tr>
<tbody>
<th class="tg-yw4l">Optional</th>
<tr><td class="left">WITH_GPU</td><td class="left">Compile with GPU mode.</td></tr>
<th class="tg-yw4l">Description</th>
<tr><td class="left">WITH_DOUBLE</td><td class="left">Compile with double precision floating-point, default: single precision.</td></tr>
</tr>
<tr><td class="left">WITH_GLOG</td><td class="left">Compile with glog. If not found, default: an internal log implementation.</td></tr>
<tr>
<tr><td class="left">WITH_GFLAGS</td><td class="left">Compile with gflags. If not found, default: an internal flag implementation.</td></tr>
<td class="tg-9hbo">WITH_GPU</td>
<tr><td class="left">WITH_TESTING</td><td class="left">Compile with gtest for PaddlePaddle's unit testing.</td></tr>
<td class="tg-yw4l">Compile with GPU mode.</td>
<tr><td class="left">WITH_DOC</td><td class="left"> Compile to generate PaddlePaddle's docs, default: disabled (OFF).</td></tr>
</tr>
<tr><td class="left">WITH_SWIG_PY</td><td class="left">Compile with python predict API, default: disabled (OFF).</td></tr>
<tr>
<tr><td class="left">WITH_STYLE_CHECK</td><td class="left">Compile with code style check, default: enabled (ON).</td></tr>
<td class="tg-9hbo">WITH_DOUBLE</td>
</tbody>
<td class="tg-yw4l">Compile with double precision floating-point, default: single precision.</td>
</tr>
<tr>
<td class="tg-9hbo">WITH_GLOG</td>
<td class="tg-yw4l">Compile with glog. If not found, default: an internal log implementation.</td>
</tr>
<tr>
<td class="tg-9hbo">WITH_GFLAGS</td>
<td class="tg-yw4l">Compile with gflags. If not found, default: an internal flag implementation.</td>
</tr>
<tr>
<td class="tg-9hbo">WITH_TESTING</td>
<td class="tg-yw4l">Compile with gtest for PaddlePaddle's unit testing.</td>
</tr>
<tr>
<td class="tg-9hbo">WITH_DOC</td>
<td class="tg-yw4l">Compile to generate PaddlePaddle's docs, default: disabled (OFF)</td>
</tr>
<tr>
<td class="tg-9hbo">WITH_SWIG_PY</td>
<td class="tg-yw4l">Compile with python predict API, default: disabled (OFF).</td>
</tr>
<tr>
<td class="tg-9hbo">WITH_STYLE_CHECK</td>
<td class="tg-yw4l">Compile with code style check, default: enabled (ON).</td>
</tr>
</table>
</table>
</html>
**Note:**
**Note:**
- The GPU version works best with Cuda Toolkit 7.5 and cuDNN v5.
- The GPU version works best with Cuda Toolkit 7.5 and cuDNN v5.
...
...
doc/build/build_from_source.html
浏览文件 @
451ec2df
...
@@ -98,51 +98,26 @@ var _hmt = _hmt || [];
...
@@ -98,51 +98,26 @@ var _hmt = _hmt || [];
<div
class=
"section"
id=
"options"
>
<div
class=
"section"
id=
"options"
>
<span
id=
"options"
></span><h3>
Options
<a
class=
"headerlink"
href=
"#options"
title=
"Permalink to this headline"
>
¶
</a></h3>
<span
id=
"options"
></span><h3>
Options
<a
class=
"headerlink"
href=
"#options"
title=
"Permalink to this headline"
>
¶
</a></h3>
<p>
PaddlePaddle supports some build options. To enable it, first you need to install the related libraries.
</p>
<p>
PaddlePaddle supports some build options. To enable it, first you need to install the related libraries.
</p>
<style
type=
"text/css"
>
<p><html></p>
.tg
{
border-collapse
:
collapse
;
border-spacing
:
0
;
border-color
:
#ccc
;}
<table>
.tg
td
{
font-family
:
Arial
,
sans-serif
;
font-size
:
14px
;
padding
:
10px
5px
;
border-style
:
solid
;
border-width
:
0px
;
overflow
:
hidden
;
word-break
:
normal
;
border-color
:
#ccc
;
color
:
#333
;
background-color
:
#fff
;
border-top-width
:
1px
;
border-bottom-width
:
1px
;}
<thead>
.tg
th
{
font-family
:
Arial
,
sans-serif
;
font-size
:
14px
;
font-weight
:
normal
;
padding
:
10px
5px
;
border-style
:
solid
;
border-width
:
0px
;
overflow
:
hidden
;
word-break
:
normal
;
border-color
:
#ccc
;
color
:
#333
;
background-color
:
#f0f0f0
;
border-top-width
:
1px
;
border-bottom-width
:
1px
;}
<tr>
.tg
.tg-yw4l
{
vertical-align
:
top
}
<th
scope=
"col"
class=
"left"
>
Optional
</th>
.tg
.tg-9hbo
{
font-weight
:
bold
;
vertical-align
:
top
}
<th
scope=
"col"
class=
"left"
>
Description
</th>
</style>
</tr>
<table
class=
"tg"
>
</thead>
<tr>
<tbody>
<th
class=
"tg-yw4l"
>
Optional
</th>
<tr><td
class=
"left"
>
WITH_GPU
</td><td
class=
"left"
>
Compile with GPU mode.
</td></tr>
<th
class=
"tg-yw4l"
>
Description
</th>
<tr><td
class=
"left"
>
WITH_DOUBLE
</td><td
class=
"left"
>
Compile with double precision floating-point, default: single precision.
</td></tr>
</tr>
<tr><td
class=
"left"
>
WITH_GLOG
</td><td
class=
"left"
>
Compile with glog. If not found, default: an internal log implementation.
</td></tr>
<tr>
<tr><td
class=
"left"
>
WITH_GFLAGS
</td><td
class=
"left"
>
Compile with gflags. If not found, default: an internal flag implementation.
</td></tr>
<td
class=
"tg-9hbo"
>
WITH_GPU
</td>
<tr><td
class=
"left"
>
WITH_TESTING
</td><td
class=
"left"
>
Compile with gtest for PaddlePaddle's unit testing.
</td></tr>
<td
class=
"tg-yw4l"
>
Compile with GPU mode.
</td>
<tr><td
class=
"left"
>
WITH_DOC
</td><td
class=
"left"
>
Compile to generate PaddlePaddle's docs, default: disabled (OFF).
</td></tr>
</tr>
<tr><td
class=
"left"
>
WITH_SWIG_PY
</td><td
class=
"left"
>
Compile with python predict API, default: disabled (OFF).
</td></tr>
<tr>
<tr><td
class=
"left"
>
WITH_STYLE_CHECK
</td><td
class=
"left"
>
Compile with code style check, default: enabled (ON).
</td></tr>
<td
class=
"tg-9hbo"
>
WITH_DOUBLE
</td>
</tbody>
<td
class=
"tg-yw4l"
>
Compile with double precision floating-point, default: single precision.
</td>
</table>
</tr>
</html><p><strong>
Note:
</strong></p>
<tr>
<td
class=
"tg-9hbo"
>
WITH_GLOG
</td>
<td
class=
"tg-yw4l"
>
Compile with glog. If not found, default: an internal log implementation.
</td>
</tr>
<tr>
<td
class=
"tg-9hbo"
>
WITH_GFLAGS
</td>
<td
class=
"tg-yw4l"
>
Compile with gflags. If not found, default: an internal flag implementation.
</td>
</tr>
<tr>
<td
class=
"tg-9hbo"
>
WITH_TESTING
</td>
<td
class=
"tg-yw4l"
>
Compile with gtest for PaddlePaddle's unit testing.
</td>
</tr>
<tr>
<td
class=
"tg-9hbo"
>
WITH_DOC
</td>
<td
class=
"tg-yw4l"
>
Compile to generate PaddlePaddle's docs, default: disabled (OFF)
</td>
</tr>
<tr>
<td
class=
"tg-9hbo"
>
WITH_SWIG_PY
</td>
<td
class=
"tg-yw4l"
>
Compile with python predict API, default: disabled (OFF).
</td>
</tr>
<tr>
<td
class=
"tg-9hbo"
>
WITH_STYLE_CHECK
</td>
<td
class=
"tg-yw4l"
>
Compile with code style check, default: enabled (ON).
</td>
</tr>
</table><p><strong>
Note:
</strong></p>
<ul
class=
"simple"
>
<ul
class=
"simple"
>
<li>
The GPU version works best with Cuda Toolkit 7.5 and cuDNN v5.
</li>
<li>
The GPU version works best with Cuda Toolkit 7.5 and cuDNN v5.
</li>
<li>
Other versions like Cuda Toolkit 6.5, 7.0, 8.0 and cuDNN v2, v3, v4 are also supported.
</li>
<li>
Other versions like Cuda Toolkit 6.5, 7.0, 8.0 and cuDNN v2, v3, v4 are also supported.
</li>
...
...
doc/searchindex.js
浏览文件 @
451ec2df
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录