Skip to content

Commit f42ea48

Browse files
committed
deal with conflict
2 parents 940f5db + 1e417b9 commit f42ea48

File tree

196 files changed

+5532
-1817
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

196 files changed

+5532
-1817
lines changed

CMakeLists.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,12 @@ else()
136136
set(THIRD_PARTY_BUILD_TYPE Release)
137137
endif()
138138

139+
if(WITH_MKL)
140+
option(MKL_SPLIT_GEMM "PaddlePaddle MKL gemm would split to small ones" OFF)
141+
if (MKL_SPLIT_GEMM)
142+
add_definitions(-DPADDLE_MKL_SPLIT_GEMM)
143+
endif()
144+
endif()
139145
set(WITH_MKLML ${WITH_MKL})
140146
if (NOT DEFINED WITH_MKLDNN)
141147
if (WITH_MKL AND AVX2_FOUND)

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,21 @@ learning to many products at Baidu.
1818
Our vision is to enable deep learning for everyone via PaddlePaddle.
1919
Please refer to our [release announcement](https://github.com/PaddlePaddle/Paddle/releases) to track the latest feature of PaddlePaddle.
2020

21-
### Lastest PaddlePaddle Version: [Fluid](https://github.com/PaddlePaddle/Paddle/tree/develop/paddle/fluid)
21+
22+
### Latest PaddlePaddle Release: [Fluid 0.14.0](https://github.com/PaddlePaddle/Paddle/tree/v0.14.0)
23+
### Install Latest Stable Release:
24+
```
25+
# Linux CPU
26+
pip install paddlepaddle
27+
# Linux GPU cuda9cudnn7
28+
pip install paddlepaddle-gpu
29+
# Linux GPU cuda8cudnn7
30+
pip install paddlepaddle-gpu==0.14.0.post87
31+
# Linux GPU cuda8cudnn5
32+
pip install paddlepaddle-gpu==0.14.0.post85
33+
34+
# For installation on other platform, refer to http://paddlepaddle.org/
35+
```
2236

2337
## Features
2438

benchmark/paddle/image/run.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/bin/bash
2+
13
set -e
24

35
function train() {

benchmark/paddle/image/run_mkl_infer.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/bin/bash
2+
13
set -e
24

35
function clock_to_seconds() {

benchmark/paddle/image/run_mkl_train.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/bin/bash
2+
13
set -e
24

35
function train() {

benchmark/paddle/image/run_openblas_infer.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/bin/bash
2+
13
set -e
24

35
function clock_to_seconds() {

benchmark/paddle/image/run_openblas_train.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/bin/bash
2+
13
set -e
24

35
function train() {

benchmark/paddle/rnn/run.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/bin/bash
2+
13
set -e
24

35
function train() {

benchmark/tensorflow/image/run.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/bin/bash
2+
13
set -e
24

35
function test() {

benchmark/tensorflow/image/run_multi.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/bin/bash
2+
13
set -e
24

35
function test() {

0 commit comments

Comments
 (0)