[GitHub] [incubator-mxnet] samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support

2019-09-25 Thread GitBox
samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support URL: https://github.com/apache/incubator-mxnet/pull/15921#discussion_r328230004 ## File path: Makefile ## @@ -664,6 +664,9 @@ cpplint: pylint: python3 -m pylint --rcfil

[GitHub] [incubator-mxnet] samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support

2019-09-25 Thread GitBox
samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support URL: https://github.com/apache/incubator-mxnet/pull/15921#discussion_r328230004 ## File path: Makefile ## @@ -664,6 +664,9 @@ cpplint: pylint: python3 -m pylint --rcfil

[GitHub] [incubator-mxnet] samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support

2019-09-16 Thread GitBox
samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support URL: https://github.com/apache/incubator-mxnet/pull/15921#discussion_r324862929 ## File path: include/mxnet/lib_api.h ## @@ -18,33 +18,601 @@ */ /*! - * Copyright (c) 2015

[GitHub] [incubator-mxnet] samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support

2019-09-06 Thread GitBox
samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support URL: https://github.com/apache/incubator-mxnet/pull/15921#discussion_r321955499 ## File path: example/lib_ops/subgraph_lib.cc ## @@ -0,0 +1,125 @@ +/* + * Licensed to the Apache

[GitHub] [incubator-mxnet] samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support

2019-09-06 Thread GitBox
samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support URL: https://github.com/apache/incubator-mxnet/pull/15921#discussion_r321955177 ## File path: include/mxnet/lib_api.h ## @@ -18,33 +18,627 @@ */ /*! - * Copyright (c) 2015

[GitHub] [incubator-mxnet] samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support

2019-09-06 Thread GitBox
samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support URL: https://github.com/apache/incubator-mxnet/pull/15921#discussion_r321955086 ## File path: include/mxnet/lib_api.h ## @@ -18,33 +18,627 @@ */ /*! - * Copyright (c) 2015

[GitHub] [incubator-mxnet] samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support

2019-09-06 Thread GitBox
samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support URL: https://github.com/apache/incubator-mxnet/pull/15921#discussion_r321954968 ## File path: example/lib_ops/subgraph_lib.cc ## @@ -0,0 +1,125 @@ +/* + * Licensed to the Apache

[GitHub] [incubator-mxnet] samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support

2019-09-06 Thread GitBox
samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support URL: https://github.com/apache/incubator-mxnet/pull/15921#discussion_r321954930 ## File path: include/mxnet/lib_api.h ## @@ -18,33 +18,627 @@ */ /*! - * Copyright (c) 2015

[GitHub] [incubator-mxnet] samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support

2019-09-03 Thread GitBox
samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support URL: https://github.com/apache/incubator-mxnet/pull/15921#discussion_r320402090 ## File path: src/c_api/c_api.cc ## @@ -92,16 +93,384 @@ inline int MXAPIGetFunctionRegInfo(const

[GitHub] [incubator-mxnet] samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support

2019-09-03 Thread GitBox
samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support URL: https://github.com/apache/incubator-mxnet/pull/15921#discussion_r320402090 ## File path: src/c_api/c_api.cc ## @@ -92,16 +93,384 @@ inline int MXAPIGetFunctionRegInfo(const

[GitHub] [incubator-mxnet] samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support

2019-09-03 Thread GitBox
samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support URL: https://github.com/apache/incubator-mxnet/pull/15921#discussion_r320309108 ## File path: src/c_api/c_api.cc ## @@ -92,16 +93,384 @@ inline int MXAPIGetFunctionRegInfo(const

[GitHub] [incubator-mxnet] samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support

2019-09-03 Thread GitBox
samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support URL: https://github.com/apache/incubator-mxnet/pull/15921#discussion_r320309108 ## File path: src/c_api/c_api.cc ## @@ -92,16 +93,384 @@ inline int MXAPIGetFunctionRegInfo(const

[GitHub] [incubator-mxnet] samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support

2019-08-29 Thread GitBox
samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support URL: https://github.com/apache/incubator-mxnet/pull/15921#discussion_r318935207 ## File path: include/mxnet/lib_api.h ## @@ -25,26 +25,329 @@ #ifndef MXNET_LIB_API_H_ #define

[GitHub] [incubator-mxnet] samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support

2019-08-29 Thread GitBox
samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support URL: https://github.com/apache/incubator-mxnet/pull/15921#discussion_r318934388 ## File path: example/lib_ops/mylib.cc ## @@ -0,0 +1,139 @@ +/* + * Licensed to the Apache Softwa

[GitHub] [incubator-mxnet] samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support

2019-08-29 Thread GitBox
samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support URL: https://github.com/apache/incubator-mxnet/pull/15921#discussion_r318926432 ## File path: example/lib_ops/mylib.cc ## @@ -0,0 +1,139 @@ +/* + * Licensed to the Apache Softwa

[GitHub] [incubator-mxnet] samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support

2019-08-26 Thread GitBox
samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support URL: https://github.com/apache/incubator-mxnet/pull/15921#discussion_r317890065 ## File path: src/c_api/c_api.cc ## @@ -284,6 +287,36 @@ int MXLoadLib(const char *path) {

[GitHub] [incubator-mxnet] samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support

2019-08-26 Thread GitBox
samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support URL: https://github.com/apache/incubator-mxnet/pull/15921#discussion_r317889911 ## File path: include/mxnet/lib_api.h ## @@ -302,6 +307,39 @@ extern "C" { return retval;

[GitHub] [incubator-mxnet] samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support

2019-08-26 Thread GitBox
samskalicky commented on a change in pull request #15921: [WIP] dynamic custom operator support URL: https://github.com/apache/incubator-mxnet/pull/15921#discussion_r317714848 ## File path: Makefile ## @@ -660,7 +660,7 @@ pylint: python3 -m pylint --rcfile=$(ROOTDI