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

Commit

Permalink
Prep for 0.12.1: Version Updates (#8567)
Browse files Browse the repository at this point in the history
* Final Changes for 0.12.1

* Prep 0.12.1: Changes

* Initial Changes to NEWS.md
  • Loading branch information
mbaijal authored and cjolivier01 committed Nov 7, 2017
1 parent e3699c0 commit e0c7906
Show file tree
Hide file tree
Showing 25 changed files with 53 additions and 40 deletions.
12 changes: 12 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
MXNet Change Log
================
## 0.12.1
### Bug-fixes
- Added GPU support for the `syevd` operator which ensures that there is GPU support for all linalg-operators.
- Bugfix for `syevd` on CPU such that it works for `float32`.
- Fixed API call when `OMP_NUM_THREADS` environment variable is set.
- Fixed `MakeNonlossGradNode` bug.
- Fixed bug related to passing `dtype` to `array()`.
- Fixed some minor bugs for sparse distributed training.
- Fixed a bug on `Slice` accessing uninitialized memory in `param.begin` in the file `matrix_op-inl.h`.
- Fixed `gluon.data.RecordFileDataset`.
- Fixed a bug that caused `autograd` to crash on some networks.

## 0.12.0
### Performance
- Added full support for NVIDIA Volta GPU Architecture and CUDA 9. Training CNNs is up to 3.5x faster than Pascal when using float16 precision.
Expand Down
2 changes: 1 addition & 1 deletion R-package/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: mxnet
Type: Package
Title: MXNet: A Flexible and Efficient Machine Learning Library for Heterogeneous Distributed Systems
Version: 0.12.0
Version: 0.12.1
Date: 2017-06-27
Author: Tianqi Chen, Qiang Kou, Tong He
Maintainer: Qiang Kou <[email protected]>
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ deep learning systems, and interesting insights of DL systems for hackers.

What's New
----------
* [Version 0.12.1 Release](https://github.com/apache/incubator-mxnet/releases/tag/0.12.1) - MXNet 0.12.1 Patch Release.
* [Version 0.12.0 Release](https://github.com/apache/incubator-mxnet/releases/tag/0.12.0) - MXNet 0.12.0 Release.
* [Version 0.11.0 Release](https://github.com/apache/incubator-mxnet/releases/tag/0.11.0) - MXNet 0.11.0 Release.
* [Apache Incubator](http://incubator.apache.org/projects/mxnet.html) - We are now an Apache Incubator project.
Expand Down
2 changes: 1 addition & 1 deletion docs/build_version_doc/build_all_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# Built files are stored in $built
# Version numbers are stored in $tag_list.
# Version numbers are ordered from latest to old and final one is master.
tag_list="0.12.0 0.11.0 master"
tag_list="0.12.1 0.12.0 0.11.0 master"

mxnet_url="https://github.com/apache/incubator-mxnet.git"
mxnet_folder="apache_mxnet"
Expand Down
2 changes: 1 addition & 1 deletion include/mxnet/base.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
/*! \brief minor version */
#define MXNET_MINOR 12
/*! \brief patch version */
#define MXNET_PATCH 0
#define MXNET_PATCH 1
/*! \brief mxnet version */
#define MXNET_VERSION (MXNET_MAJOR*10000 + MXNET_MINOR*100 + MXNET_PATCH)
/*! \brief helper for making version number */
Expand Down
2 changes: 1 addition & 1 deletion python/mxnet/libinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ def find_lib_path():


# current version
__version__ = "0.12.0"
__version__ = "0.12.1"
6 changes: 3 additions & 3 deletions scala-package/assembly/linux-x86_64-cpu/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-full-parent_2.11</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -18,12 +18,12 @@
<dependency>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-core_${scala.binary.version}</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>libmxnet-scala-linux-x86_64-cpu</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<type>so</type>
</dependency>
</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions scala-package/assembly/linux-x86_64-gpu/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-full-parent_2.11</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -18,12 +18,12 @@
<dependency>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-core_${scala.binary.version}</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>libmxnet-scala-linux-x86_64-gpu</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<type>so</type>
</dependency>
</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions scala-package/assembly/osx-x86_64-cpu/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-full-parent_2.11</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -18,12 +18,12 @@
<dependency>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-core_${scala.binary.version}</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>libmxnet-scala-osx-x86_64-cpu</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<type>jnilib</type>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion scala-package/assembly/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-parent_2.11</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
6 changes: 3 additions & 3 deletions scala-package/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-parent_2.11</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down Expand Up @@ -71,13 +71,13 @@
<dependency>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-init_${scala.binary.version}</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-macros_${scala.binary.version}</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions scala-package/examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-parent_2.11</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down Expand Up @@ -118,7 +118,7 @@
<dependency>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-core_${scala.binary.version}</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions scala-package/init-native/linux-x86_64/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-scala-init-native-parent</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -20,7 +20,7 @@
<dependency>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-init_${scala.binary.version}</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions scala-package/init-native/osx-x86_64/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-scala-init-native-parent</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -20,7 +20,7 @@
<dependency>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-init_${scala.binary.version}</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion scala-package/init-native/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-parent_2.11</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion scala-package/init/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-parent_2.11</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<!-- <relativePath>../pom.xml</relativePath>-->
</parent>

Expand Down
6 changes: 3 additions & 3 deletions scala-package/macros/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-parent_2.11</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down Expand Up @@ -41,13 +41,13 @@
<dependency>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-init_${scala.binary.version}</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>libmxnet-init-scala-${platform}</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<scope>provided</scope>
<type>${libtype}</type>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions scala-package/native/linux-x86_64-cpu/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-scala-native-parent</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -20,7 +20,7 @@
<dependency>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-core_${scala.binary.version}</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions scala-package/native/linux-x86_64-gpu/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-scala-native-parent</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -20,7 +20,7 @@
<dependency>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-core_${scala.binary.version}</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions scala-package/native/osx-x86_64-cpu/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-scala-native-parent</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -20,7 +20,7 @@
<dependency>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-core_${scala.binary.version}</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion scala-package/native/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-parent_2.11</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion scala-package/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-parent_2.11</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<name>MXNet Scala Package - Parent</name>
<url>https://github.com/dmlc/mxnet/tree/master/scala-package</url>
<description>MXNet Scala Package</description>
Expand Down
4 changes: 2 additions & 2 deletions scala-package/spark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-parent_2.11</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -21,7 +21,7 @@
<dependency>
<groupId>ml.dmlc.mxnet</groupId>
<artifactId>mxnet-core_${scala.binary.version}</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion setup-utils/install-mxnet-osx-python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ then
# TODO: Change this to latest tag
# to avoid updating this value for every release
#
export MXNET_TAG="0.12.0"
export MXNET_TAG="0.12.1"
fi

export TARIKH=`/bin/date +%Y-%m-%d-%H:%M:%S`
Expand Down
2 changes: 1 addition & 1 deletion snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: mxnet
version: '0.12.0'
version: '0.12.1'
summary: MXNet is a deep learning framework designed for efficiency and flexibility.
description: |
MXNet is a deep learning framework designed for both efficiency and
Expand Down

0 comments on commit e0c7906

Please sign in to comment.