You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by jx...@apache.org on 2017/12/04 01:09:33 UTC

[incubator-mxnet] branch v1.0.0 updated (25720d0 -> 2b67436)

This is an automated email from the ASF dual-hosted git repository.

jxie pushed a change to branch v1.0.0
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git.


    from 25720d0  Get ptb script change for licensing issues (#8899)
     new c63ca70  fix multiprocessing too many open files
     new 2b67436  Update index.md

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 docs/tutorials/index.md                  | 9 ++++-----
 src/storage/cpu_shared_storage_manager.h | 1 +
 2 files changed, 5 insertions(+), 5 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@mxnet.apache.org" <co...@mxnet.apache.org>'].

[incubator-mxnet] 01/02: fix multiprocessing too many open files

Posted by jx...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jxie pushed a commit to branch v1.0.0
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git

commit c63ca705f626663725e51ed1179c3c834177fa9c
Author: Junyuan Xie <er...@gmail.com>
AuthorDate: Sun Dec 3 17:09:02 2017 -0800

    fix multiprocessing too many open files
---
 src/storage/cpu_shared_storage_manager.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/storage/cpu_shared_storage_manager.h b/src/storage/cpu_shared_storage_manager.h
index d623cf2..9f0f2a3 100644
--- a/src/storage/cpu_shared_storage_manager.h
+++ b/src/storage/cpu_shared_storage_manager.h
@@ -139,6 +139,7 @@ void CPUSharedStorageManager::Alloc(Storage::Handle* handle) {
   ptr = mmap(NULL, size, PROT_READ|PROT_WRITE, MAP_SHARED, fid, 0);
   CHECK_NE(ptr, MAP_FAILED)
       << "Failed to map shared memory. mmap failed with error " << strerror(errno);
+  close(fid);
 #endif  // _WIN32
 
   if (is_new) {

-- 
To stop receiving notification emails like this one, please contact
"commits@mxnet.apache.org" <co...@mxnet.apache.org>.

[incubator-mxnet] 02/02: Update index.md

Posted by jx...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jxie pushed a commit to branch v1.0.0
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git

commit 2b67436802b750e15b9fbfdf275958c1000be6a8
Author: Junyuan Xie <er...@gmail.com>
AuthorDate: Sun Dec 3 17:09:27 2017 -0800

    Update index.md
---
 docs/tutorials/index.md | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/docs/tutorials/index.md b/docs/tutorials/index.md
index 325f385..d20a821 100644
--- a/docs/tutorials/index.md
+++ b/docs/tutorials/index.md
@@ -1,14 +1,11 @@
 # Tutorials
 
-These tutorials introduce a few fundamental concepts in deep learning and how to implement them in _MXNet_. The _Basics_ section contains tutorials on manipulating arrays, building networks, loading/preprocessing data, etc. The _Training and Inference_ section talks about implementing Linear Regression, training a Handwritten digit classifier using MLP and CNN, running inferences using a pre-trained model, and lastly, efficiently training a large scale image classifier.
-
-
 ## Gluon
 
 Gluon is the high-level interface for MXNet. It is more intuitive and easier to use than the lower level interface.
 Gluon supports dynamic (define-by-run) graphs with JIT-compilation to achieve both flexibility and efficiency.
-This is a selected subset of Gluon tutorials. For the comprehensive tutorial on Gluon,
-please see [gluon.mxnet.io](http://gluon.mxnet.io).
+
+This is a selected subset of Gluon tutorials that explains basic usage of Gluon and fundamental concepts in deep learning. For the comprehensive tutorial on Gluon that covers topics from basic statistics and probability theory to reinforcement learning and recommender systems, please see [gluon.mxnet.io](http://gluon.mxnet.io). 
 
 ### Basics
 
@@ -32,6 +29,8 @@ please see [gluon.mxnet.io](http://gluon.mxnet.io).
 
 ## MXNet
 
+These tutorials introduce a few fundamental concepts in deep learning and how to implement them in _MXNet_. The _Basics_ section contains tutorials on manipulating arrays, building networks, loading/preprocessing data, etc. The _Training and Inference_ section talks about implementing Linear Regression, training a Handwritten digit classifier using MLP and CNN, running inferences using a pre-trained model, and lastly, efficiently training a large scale image classifier.
+
 ### Basics
 
 ```eval_rst

-- 
To stop receiving notification emails like this one, please contact
"commits@mxnet.apache.org" <co...@mxnet.apache.org>.