Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.

Commit 67bee19

Browse files
authored
[RELEASE] v0.8 Release (Last release before NNVM refactor (#4409)
* [RELEASE] v0.8 Release (Last release before NNVM refactor * fix
1 parent 4586bc5 commit 67bee19

File tree

5 files changed

+20
-5
lines changed

5 files changed

+20
-5
lines changed

NEWS.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@ MXNet Change Log
22
================
33
## in progress version
44

5+
## v0.8
6+
This is the last release before the NNVM refactor.
7+
- CaffeOp and CaffeIter for interfacing with Caffe by @HrWangChengdu @cjolivier01
8+
- WrapCTC plugin for sequence learning by @xlvector
9+
- Improved Multi-GPU performance by @mli
10+
- CuDNN RNN support by @sbodenstein
11+
- OpenCV plugin for parallel image IO by @piiswrong
12+
- More operators as simple op
13+
- Simple OP @tqchen
14+
- element wise op with axis and broadcast @mli @sxjscience
15+
- Cudnn auto tuning for faster convolution by @piiswrong
16+
- More applications
17+
- Faster RCNN by @precedenceguo
18+
19+
520
## v0.7
621
- 0.6 is skipped because there are a lot of improvements since initial release
722
- More math operators

R-package/DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: mxnet
22
Type: Package
33
Title: MXNet
4-
Version: 0.7
4+
Version: 0.8
55
Date: 2015-12-23
66
Author: Tianqi Chen, Qiang Kou, Tong He
77
Maintainer: Qiang Kou <qkou@umail.iu.edu>

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@
5555
}
5656
os.environ['MXNET_BUILD_DOC'] = '1'
5757
# Version information.
58-
version = '0.7.0'
59-
release = '0.7.0'
58+
version = '0.8.0'
59+
release = '0.8.0'
6060
# import mxnet
6161
# version = mxnet.__version__
6262
# release = mxnet.__version__

plugin/warpctc/warpctc-inl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ class WarpCTCOp : public Operator {
120120
TBlob data = in_data[warpctc_enum::kData];
121121
TBlob label = in_data[warpctc_enum::kLabel];
122122
CHECK_EQ(data.shape_.ndim(), 2) << "input data shape should be 2 (t*n, p)";
123-
ctcComputeInfo info;
123+
ctcComputeInfo info; // please build warp-ctc with commit 5bfb46e (cd warp-ctc && git checkout 5bfb46e) NOLINT(*)
124124
if (data.dev_mask_ == cpu::kDevMask) {
125125
info.loc = CTC_CPU;
126126
info.num_threads = 1;

python/mxnet/libinfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ def find_lib_path():
3838

3939

4040
# current version
41-
__version__ = "0.7.0"
41+
__version__ = "0.8.0"

0 commit comments

Comments
 (0)