You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by zh...@apache.org on 2019/01/09 18:13:03 UTC

[incubator-mxnet] branch master updated: whitelist symbols for using MXNet error handling externally (#13812)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 8ece68c  whitelist symbols for using MXNet error handling externally (#13812)
8ece68c is described below

commit 8ece68c9ef02404326da68bbfa9eef7979bd1a5d
Author: Yuxi Hu <da...@gmail.com>
AuthorDate: Wed Jan 9 10:12:42 2019 -0800

    whitelist symbols for using MXNet error handling externally (#13812)
---
 make/config/libmxnet.sym | 3 +++
 make/config/libmxnet.ver | 3 +++
 2 files changed, 6 insertions(+)

diff --git a/make/config/libmxnet.sym b/make/config/libmxnet.sym
index a472161..9fc2b0b 100644
--- a/make/config/libmxnet.sym
+++ b/make/config/libmxnet.sym
@@ -10,3 +10,6 @@ Java_org_apache_mxnet*
 *NDArray*
 *Engine*Get*
 *Storage*Get*
+*on_enter_api*;
+*on_exit_api*;
+*MXAPISetLastError*;
diff --git a/make/config/libmxnet.ver b/make/config/libmxnet.ver
index c837213..560549c 100644
--- a/make/config/libmxnet.ver
+++ b/make/config/libmxnet.ver
@@ -12,5 +12,8 @@
         *NDArray*;
         *Engine*Get*;
         *Storage*Get*;
+        *on_enter_api*;
+        *on_exit_api*;
+        *MXAPISetLastError*;
     local: *;
 };