This repository was archived by the owner on Nov 17, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +20
-5
lines changed
Expand file tree Collapse file tree 5 files changed +20
-5
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11Package: mxnet
22Type: Package
33Title: MXNet
4- Version: 0.7
4+ Version: 0.8
55Date: 2015-12-23
66Author: Tianqi Chen, Qiang Kou, Tong He
77Maintainer: Qiang Kou <qkou@umail.iu.edu>
Original file line number Diff line number Diff line change 5555}
5656os .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__
Original file line number Diff line number Diff 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 ;
Original file line number Diff line number Diff 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"
You can’t perform that action at this time.
0 commit comments