[GitHub] [incubator-mxnet] haojin2 commented on a change in pull request #15859: [Numpy] numpy compatible invert

2019-08-13 Thread GitBox
haojin2 commented on a change in pull request #15859: [Numpy] numpy compatible invert URL: https://github.com/apache/incubator-mxnet/pull/15859#discussion_r313712998 ## File path: src/operator/numpy/np_elemwise_unary_op_basic.cc ## @@ -0,0 +1,52 @@ +/* +* Licensed to the

[GitHub] [incubator-mxnet] haojin2 commented on a change in pull request #15859: [Numpy] numpy compatible invert

2019-08-13 Thread GitBox
haojin2 commented on a change in pull request #15859: [Numpy] numpy compatible invert URL: https://github.com/apache/incubator-mxnet/pull/15859#discussion_r313712967 ## File path: src/operator/numpy/np_elemwise_unary_op_basic.cc ## @@ -0,0 +1,52 @@ +/* +* Licensed to the

[GitHub] [incubator-mxnet] haojin2 commented on a change in pull request #15859: [Numpy] numpy compatible invert

2019-08-13 Thread GitBox
haojin2 commented on a change in pull request #15859: [Numpy] numpy compatible invert URL: https://github.com/apache/incubator-mxnet/pull/15859#discussion_r313712915 ## File path: src/operator/numpy/np_elemwise_unary_op_basic.cc ## @@ -0,0 +1,52 @@ +/* +* Licensed to the

[GitHub] [incubator-mxnet] haojin2 commented on a change in pull request #15859: [Numpy] numpy compatible invert

2019-08-13 Thread GitBox
haojin2 commented on a change in pull request #15859: [Numpy] numpy compatible invert URL: https://github.com/apache/incubator-mxnet/pull/15859#discussion_r313712415 ## File path: python/mxnet/symbol/numpy/_symbol.py ## @@ -1135,32 +1135,8 @@ def linspace(start, stop,

[GitHub] [incubator-mxnet] hzfan commented on a change in pull request #15795: [Numpy] Differentiable svd

2019-08-13 Thread GitBox
hzfan commented on a change in pull request #15795: [Numpy] Differentiable svd URL: https://github.com/apache/incubator-mxnet/pull/15795#discussion_r313710609 ## File path: src/operator/numpy/linalg/np_gesvd-inl.h ## @@ -0,0 +1,298 @@ +/* + * Licensed to the Apache

[GitHub] [incubator-mxnet] wuxun-zhang commented on issue #15862: CPU GEMM in float 16 fails silently with NaiveEngine (CPP api)

2019-08-13 Thread GitBox
wuxun-zhang commented on issue #15862: CPU GEMM in float 16 fails silently with NaiveEngine (CPP api) URL: https://github.com/apache/incubator-mxnet/issues/15862#issuecomment-521106678 FYI, when commenting out [this line in

[GitHub] [incubator-mxnet] ZhennanQin commented on issue #15886: [WIP] Graph Partition API

2019-08-13 Thread GitBox
ZhennanQin commented on issue #15886: [WIP] Graph Partition API URL: https://github.com/apache/incubator-mxnet/pull/15886#issuecomment-521094483 What's the difference between `sym.partition('default')` and `sym.get_backend_symbol('default')`?

[incubator-mxnet] branch master updated (24a5cf0 -> f32b58e)

2019-08-13 Thread reminisce
This is an automated email from the ASF dual-hosted git repository. reminisce pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git. from 24a5cf0 Allow operators with multiple outputs in get_atomic_symbol (#15740) add f32b58e

[GitHub] [incubator-mxnet] reminisce merged pull request #15841: Numpy-compatible split upstream

2019-08-13 Thread GitBox
reminisce merged pull request #15841: Numpy-compatible split upstream URL: https://github.com/apache/incubator-mxnet/pull/15841 This is an automated message from the Apache Git Service. To respond to the message, please log

[GitHub] [incubator-mxnet] haojin2 opened a new pull request #15887: new 'raise' mode for nd.take and fix for backward of wrap mode

2019-08-13 Thread GitBox
haojin2 opened a new pull request #15887: new 'raise' mode for nd.take and fix for backward of wrap mode URL: https://github.com/apache/incubator-mxnet/pull/15887 ## Description ## (Brief description on what this PR is about) ## Checklist ## ### Essentials ### Please feel

[GitHub] [incubator-mxnet] zoeygxy commented on a change in pull request #15857: [Numpy] Added operator logaddexp; added support for zero-size tensor in BinaryBroadcastBackwardUseIn

2019-08-13 Thread GitBox
zoeygxy commented on a change in pull request #15857: [Numpy] Added operator logaddexp; added support for zero-size tensor in BinaryBroadcastBackwardUseIn URL: https://github.com/apache/incubator-mxnet/pull/15857#discussion_r313687385 ## File path:

[GitHub] [incubator-mxnet] zoeygxy commented on a change in pull request #15857: [Numpy] Added operator logaddexp; added support for zero-size tensor in BinaryBroadcastBackwardUseIn

2019-08-13 Thread GitBox
zoeygxy commented on a change in pull request #15857: [Numpy] Added operator logaddexp; added support for zero-size tensor in BinaryBroadcastBackwardUseIn URL: https://github.com/apache/incubator-mxnet/pull/15857#discussion_r313687327 ## File path: python/mxnet/numpy/multiarray.py

[GitHub] [incubator-mxnet] xnnxax527 edited a comment on issue #15796: Model Quantization with CUDNN

2019-08-13 Thread GitBox
xnnxax527 edited a comment on issue #15796: Model Quantization with CUDNN URL: https://github.com/apache/incubator-mxnet/issues/15796#issuecomment-520865110 Hi @xinyu-intel , I see you release the calibration and quantization code on Intel MKLDNN, thanks. I am so interested in

[GitHub] [incubator-mxnet] pengzhao-intel commented on issue #15886: [WIP] Graph Partition API

2019-08-13 Thread GitBox
pengzhao-intel commented on issue #15886: [WIP] Graph Partition API URL: https://github.com/apache/incubator-mxnet/pull/15886#issuecomment-521080765 @ZhennanQin for review the compatible :) This is an automated message from

[GitHub] [incubator-mxnet] larroy commented on issue #15629: DataLoader Error using Multi processing

2019-08-13 Thread GitBox
larroy commented on issue #15629: DataLoader Error using Multi processing URL: https://github.com/apache/incubator-mxnet/issues/15629#issuecomment-521078983 Hi. This is not supported, to fork a process and use MXNet inside. We should probably detect this and throw an error.

[GitHub] [incubator-mxnet] mseth10 opened a new pull request #15886: [WIP] Graph Partition API

2019-08-13 Thread GitBox
mseth10 opened a new pull request #15886: [WIP] Graph Partition API URL: https://github.com/apache/incubator-mxnet/pull/15886 ## Description ## This PR enables partitioning of a symbol with given subgraph_property name and produces a new symbol. We’ll reuse the existing graph

[incubator-mxnet] branch v1.5.x updated: fix LinearRegressionOutput with empty label (#15620) (#15873)

2019-08-13 Thread taolv
This is an automated email from the ASF dual-hosted git repository. taolv pushed a commit to branch v1.5.x in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git The following commit(s) were added to refs/heads/v1.5.x by this push: new 782f1a8 fix LinearRegressionOutput

[incubator-mxnet-site] branch asf-site updated: Bump the publish timestamp.

2019-08-13 Thread marcoabreu
This is an automated email from the ASF dual-hosted git repository. marcoabreu pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/incubator-mxnet-site.git The following commit(s) were added to refs/heads/asf-site by this push: new a17d36c Bump the publish

[GitHub] [incubator-mxnet] TaoLv merged pull request #15873: [v1.5.x] fix LinearRegressionOutput with empty label (#15620)

2019-08-13 Thread GitBox
TaoLv merged pull request #15873: [v1.5.x] fix LinearRegressionOutput with empty label (#15620) URL: https://github.com/apache/incubator-mxnet/pull/15873 This is an automated message from the Apache Git Service. To respond

[GitHub] [incubator-mxnet] ThomasDelteil opened a new pull request #15885: [WIP] New Website: Remove Old Content [2/3]

2019-08-13 Thread GitBox
ThomasDelteil opened a new pull request #15885: [WIP] New Website: Remove Old Content [2/3] URL: https://github.com/apache/incubator-mxnet/pull/15885 This specific commit can be reviewed here in isolation here for better readability: https://github.com/ThomasDelteil/incubator-mxnet/pull/5

[GitHub] [incubator-mxnet] ThomasDelteil opened a new pull request #15884: [WIP] New Website: New Docs [1/3]

2019-08-13 Thread GitBox
ThomasDelteil opened a new pull request #15884: [WIP] New Website: New Docs [1/3] URL: https://github.com/apache/incubator-mxnet/pull/15884 Adding new files for the new website Website can be seen here: https://thomasdelteil.github.io/mxnet.io-v2/

[GitHub] [incubator-mxnet] ThomasDelteil opened a new pull request #15883: [WIP] New Website Full PR [3/3]

2019-08-13 Thread GitBox
ThomasDelteil opened a new pull request #15883: [WIP] New Website Full PR [3/3] URL: https://github.com/apache/incubator-mxnet/pull/15883 ## Description ## **Break out each docs package generation to separate pipelines.** ✅Python - porting the mx-theme to be local to the repo to

[GitHub] [incubator-mxnet] DickJC123 opened a new pull request #15882: Windows CI build experiments. Fixes 'out of heap space' errors?

2019-08-13 Thread GitBox
DickJC123 opened a new pull request #15882: Windows CI build experiments. Fixes 'out of heap space' errors? URL: https://github.com/apache/incubator-mxnet/pull/15882 ## Description ## I believe the Windows CI build issues resulting in the 'out of heap space' errors are due to using a

[GitHub] [incubator-mxnet] pengzhao-intel commented on issue #15796: Model Quantization with CUDNN

2019-08-13 Thread GitBox
pengzhao-intel commented on issue #15796: Model Quantization with CUDNN URL: https://github.com/apache/incubator-mxnet/issues/15796#issuecomment-521042685 @DickJC123 @ptrendx is there any plan on GPU quantization? This is an

[GitHub] [incubator-mxnet] vandanavk commented on issue #15811: [MXNET-891] Support tuple of scales in upsample operator

2019-08-13 Thread GitBox
vandanavk commented on issue #15811: [MXNET-891] Support tuple of scales in upsample operator URL: https://github.com/apache/incubator-mxnet/pull/15811#issuecomment-521038896 @mxnet-label-bot add [Operator, ONNX, pr-awaiting-review]

[incubator-mxnet] branch master updated (11ce2a2 -> 24a5cf0)

2019-08-13 Thread ptrendx
This is an automated email from the ASF dual-hosted git repository. ptrendx pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git. from 11ce2a2 Add large tensor support binary arithmetic (#15785) add 24a5cf0 Allow operators with

[GitHub] [incubator-mxnet] ptrendx merged pull request #15740: Allow operators with multiple outputs in get_atomic_symbol

2019-08-13 Thread GitBox
ptrendx merged pull request #15740: Allow operators with multiple outputs in get_atomic_symbol URL: https://github.com/apache/incubator-mxnet/pull/15740 This is an automated message from the Apache Git Service. To respond

[GitHub] [incubator-mxnet] marcoabreu commented on issue #15862: CPU GEMM in float 16 fails silently with NaiveEngine (CPP api)

2019-08-13 Thread GitBox
marcoabreu commented on issue #15862: CPU GEMM in float 16 fails silently with NaiveEngine (CPP api) URL: https://github.com/apache/incubator-mxnet/issues/15862#issuecomment-521036924 @sandeep-krishnamurthy we had somebody who worked on exception for single- and multi-threaded execution,

[GitHub] [incubator-mxnet] marcoabreu commented on issue #15808: Add option to choose between OMP implementations

2019-08-13 Thread GitBox
marcoabreu commented on issue #15808: Add option to choose between OMP implementations URL: https://github.com/apache/incubator-mxnet/pull/15808#issuecomment-521035141 I'd also prefer the multi selection. This is an

[GitHub] [incubator-mxnet] larroy commented on issue #15808: Add option to choose between OMP implementations

2019-08-13 Thread GitBox
larroy commented on issue #15808: Add option to choose between OMP implementations URL: https://github.com/apache/incubator-mxnet/pull/15808#issuecomment-521034261 CI is blocked now, and it's going to be blocked for a few days. There's problems with Windows and other things. If I make

[GitHub] [incubator-mxnet] ChaiBapchya opened a new pull request #15881: [OpPerf] Profiler flag for Python, Cpp

2019-08-13 Thread GitBox
ChaiBapchya opened a new pull request #15881: [OpPerf] Profiler flag for Python, Cpp URL: https://github.com/apache/incubator-mxnet/pull/15881 ## Description ## Ensures backward compatibility ## Checklist ## ### Essentials ### Please feel free to remove inapplicable items

[incubator-mxnet-site] branch asf-site updated: Bump the publish timestamp.

2019-08-13 Thread marcoabreu
This is an automated email from the ASF dual-hosted git repository. marcoabreu pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/incubator-mxnet-site.git The following commit(s) were added to refs/heads/asf-site by this push: new 98316b9 Bump the publish

[GitHub] [incubator-mxnet] access2rohit edited a comment on issue #15807: Add Large Tensor Support for Sequence, NN Ops

2019-08-13 Thread GitBox
access2rohit edited a comment on issue #15807: Add Large Tensor Support for Sequence, NN Ops URL: https://github.com/apache/incubator-mxnet/pull/15807#issuecomment-521006916 Remove commented code if its not required ... rest LGTM. Also please rebase your branch with master again and push

[GitHub] [incubator-mxnet] access2rohit commented on issue #15807: Add Large Tensor Support for Sequence, NN Ops

2019-08-13 Thread GitBox
access2rohit commented on issue #15807: Add Large Tensor Support for Sequence, NN Ops URL: https://github.com/apache/incubator-mxnet/pull/15807#issuecomment-521006916 Remove commented code if its not required ... rest LGTM

[incubator-mxnet] branch master updated (39bf4e0 -> 11ce2a2)

2019-08-13 Thread apeforest
This is an automated email from the ASF dual-hosted git repository. apeforest pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git. from 39bf4e0 Port several np ops to master (#15867) add 11ce2a2 Add large tensor support binary

[GitHub] [incubator-mxnet] apeforest merged pull request #15785: Add large tensor support binary arithmetic

2019-08-13 Thread GitBox
apeforest merged pull request #15785: Add large tensor support binary arithmetic URL: https://github.com/apache/incubator-mxnet/pull/15785 This is an automated message from the Apache Git Service. To respond to the message,

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #15807: Add Large Tensor Support for Sequence, NN Ops

2019-08-13 Thread GitBox
apeforest commented on a change in pull request #15807: Add Large Tensor Support for Sequence, NN Ops URL: https://github.com/apache/incubator-mxnet/pull/15807#discussion_r313600242 ## File path: tests/nightly/test_large_array.py ## @@ -344,13 +352,321 @@ def

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #15807: Add Large Tensor Support for Sequence, NN Ops

2019-08-13 Thread GitBox
apeforest commented on a change in pull request #15807: Add Large Tensor Support for Sequence, NN Ops URL: https://github.com/apache/incubator-mxnet/pull/15807#discussion_r313599873 ## File path: tests/nightly/test_large_array.py ## @@ -17,7 +17,8 @@ import numpy as

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #15807: Add Large Tensor Support for Sequence, NN Ops

2019-08-13 Thread GitBox
apeforest commented on a change in pull request #15807: Add Large Tensor Support for Sequence, NN Ops URL: https://github.com/apache/incubator-mxnet/pull/15807#discussion_r313599032 ## File path: tests/nightly/test_large_array.py ## @@ -344,13 +352,321 @@ def

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #15807: Add Large Tensor Support for Sequence, NN Ops

2019-08-13 Thread GitBox
apeforest commented on a change in pull request #15807: Add Large Tensor Support for Sequence, NN Ops URL: https://github.com/apache/incubator-mxnet/pull/15807#discussion_r313598774 ## File path: tests/nightly/test_large_array.py ## @@ -344,13 +352,321 @@ def

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #15807: Add Large Tensor Support for Sequence, NN Ops

2019-08-13 Thread GitBox
apeforest commented on a change in pull request #15807: Add Large Tensor Support for Sequence, NN Ops URL: https://github.com/apache/incubator-mxnet/pull/15807#discussion_r313598506 ## File path: tests/nightly/test_large_array.py ## @@ -344,13 +352,321 @@ def

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #15807: Add Large Tensor Support for Sequence, NN Ops

2019-08-13 Thread GitBox
apeforest commented on a change in pull request #15807: Add Large Tensor Support for Sequence, NN Ops URL: https://github.com/apache/incubator-mxnet/pull/15807#discussion_r313598602 ## File path: tests/nightly/test_large_array.py ## @@ -344,13 +352,321 @@ def

[GitHub] [incubator-mxnet] ChaiBapchya edited a comment on issue #15880: [CI] unix cpu validation Timeout

2019-08-13 Thread GitBox
ChaiBapchya edited a comment on issue #15880: [CI] unix cpu validation Timeout URL: https://github.com/apache/incubator-mxnet/issues/15880#issuecomment-520996435 Another PR #15785

[GitHub] [incubator-mxnet] ChaiBapchya edited a comment on issue #15880: [CI] unix cpu validation Timeout

2019-08-13 Thread GitBox
ChaiBapchya edited a comment on issue #15880: [CI] unix cpu validation Timeout URL: https://github.com/apache/incubator-mxnet/issues/15880#issuecomment-520996435 Another PR #15785

[GitHub] [incubator-mxnet] ChaiBapchya commented on issue #15880: [CI] unix cpu validation Timeout

2019-08-13 Thread GitBox
ChaiBapchya commented on issue #15880: [CI] unix cpu validation Timeout URL: https://github.com/apache/incubator-mxnet/issues/15880#issuecomment-520996435 Another PR #15785

[GitHub] [incubator-mxnet] ChaiBapchya commented on issue #15880: [CI] unix cpu validation Timeout

2019-08-13 Thread GitBox
ChaiBapchya commented on issue #15880: [CI] unix cpu validation Timeout URL: https://github.com/apache/incubator-mxnet/issues/15880#issuecomment-520994364 @mxnet-label-bot add [CI] This is an automated message from the

[GitHub] [incubator-mxnet] ChaiBapchya opened a new issue #15880: [CI] unix cpu validation Timeout

2019-08-13 Thread GitBox
ChaiBapchya opened a new issue #15880: [CI] unix cpu validation Timeout URL: https://github.com/apache/incubator-mxnet/issues/15880 Python 3 MKL CPU timeout >3hr timeout Shell script runs for 3h

[GitHub] [incubator-mxnet] mxnet-label-bot commented on issue #15880: [CI] unix cpu validation Timeout

2019-08-13 Thread GitBox
mxnet-label-bot commented on issue #15880: [CI] unix cpu validation Timeout URL: https://github.com/apache/incubator-mxnet/issues/15880#issuecomment-520994311 Hey, this is the MXNet Label Bot. Thank you for submitting the issue! I will try and suggest some labels so that the

[GitHub] [incubator-mxnet] marcoabreu commented on issue #15849: [mkldnn-v1.0] Rebase the feature branch to the latest master

2019-08-13 Thread GitBox
marcoabreu commented on issue #15849: [mkldnn-v1.0] Rebase the feature branch to the latest master URL: https://github.com/apache/incubator-mxnet/pull/15849#issuecomment-520992756 Just make sure to not force-push please :)

[GitHub] [incubator-mxnet] marcoabreu commented on issue #15849: [mkldnn-v1.0] Rebase the feature branch to the latest master

2019-08-13 Thread GitBox
marcoabreu commented on issue #15849: [mkldnn-v1.0] Rebase the feature branch to the latest master URL: https://github.com/apache/incubator-mxnet/pull/15849#issuecomment-520992642 You have write access to the branch, so you can also just make a merge commit directly without the PR

[GitHub] [incubator-mxnet] ChaiBapchya commented on issue #9806: Some build failures on Windows don't stop Jenkins jobs

2019-08-13 Thread GitBox
ChaiBapchya commented on issue #9806: Some build failures on Windows don't stop Jenkins jobs URL: https://github.com/apache/incubator-mxnet/issues/9806#issuecomment-520992196 @marcoabreu @piyushghai Any update? resolved yet?

[incubator-mxnet-site] branch asf-site updated: Bump the publish timestamp.

2019-08-13 Thread marcoabreu
This is an automated email from the ASF dual-hosted git repository. marcoabreu pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/incubator-mxnet-site.git The following commit(s) were added to refs/heads/asf-site by this push: new f83a901 Bump the publish

[GitHub] [incubator-mxnet] samskalicky commented on issue #15784: Simple_Bind failure in 1.5.0

2019-08-13 Thread GitBox
samskalicky commented on issue #15784: Simple_Bind failure in 1.5.0 URL: https://github.com/apache/incubator-mxnet/issues/15784#issuecomment-520971269 Fixed in #15620 This is an automated message from the Apache Git

[GitHub] [incubator-mxnet] samskalicky closed issue #15784: Simple_Bind failure in 1.5.0

2019-08-13 Thread GitBox
samskalicky closed issue #15784: Simple_Bind failure in 1.5.0 URL: https://github.com/apache/incubator-mxnet/issues/15784 This is an automated message from the Apache Git Service. To respond to the message, please log on to

[GitHub] [incubator-mxnet] reminisce commented on issue #15855: [Numpy] cumprod

2019-08-13 Thread GitBox
reminisce commented on issue #15855: [Numpy] cumprod URL: https://github.com/apache/incubator-mxnet/pull/15855#issuecomment-520969021 Regarding the namespace choice in the frontend (python), how about we just follow what NumPy does? For example, `cumprod` is in

[GitHub] [incubator-mxnet] aaronmarkham opened a new pull request #15668: [WIP] Separate Jenkins docs pipelines per language

2019-08-13 Thread GitBox
aaronmarkham opened a new pull request #15668: [WIP] Separate Jenkins docs pipelines per language URL: https://github.com/apache/incubator-mxnet/pull/15668 ## Description ## **Break out each docs package generation to separate pipelines.** ✅Python - porting the mx-theme to be

[GitHub] [incubator-mxnet] aaronmarkham closed pull request #15668: [WIP] Separate Jenkins docs pipelines per language

2019-08-13 Thread GitBox
aaronmarkham closed pull request #15668: [WIP] Separate Jenkins docs pipelines per language URL: https://github.com/apache/incubator-mxnet/pull/15668 This is an automated message from the Apache Git Service. To respond to

[GitHub] [incubator-mxnet] aaronmarkham commented on issue #15668: [WIP] Separate Jenkins docs pipelines per language

2019-08-13 Thread GitBox
aaronmarkham commented on issue #15668: [WIP] Separate Jenkins docs pipelines per language URL: https://github.com/apache/incubator-mxnet/pull/15668#issuecomment-520968027 Closing to see if it fixes this mshadow stuff that shouldn't be in this PR.

[GitHub] [incubator-mxnet] zachgk commented on issue #15784: Simple_Bind failure in 1.5.0

2019-08-13 Thread GitBox
zachgk commented on issue #15784: Simple_Bind failure in 1.5.0 URL: https://github.com/apache/incubator-mxnet/issues/15784#issuecomment-520966785 @samskalicky Is this fixed since #15620 was merged? This is an automated

[GitHub] [incubator-mxnet] haojin2 merged pull request #15867: Port several np ops to master

2019-08-13 Thread GitBox
haojin2 merged pull request #15867: Port several np ops to master URL: https://github.com/apache/incubator-mxnet/pull/15867 This is an automated message from the Apache Git Service. To respond to the message, please log on

[GitHub] [incubator-mxnet] ChaiBapchya commented on issue #15879: [CI] Windows CPU numpy module not found

2019-08-13 Thread GitBox
ChaiBapchya commented on issue #15879: [CI] Windows CPU numpy module not found URL: https://github.com/apache/incubator-mxnet/issues/15879#issuecomment-520942181 @mxnet-label-bot add [CI] This is an automated message from

[GitHub] [incubator-mxnet] ChaiBapchya opened a new issue #15879: [CI] Windows CPU numpy module not found

2019-08-13 Thread GitBox
ChaiBapchya opened a new issue #15879: [CI] Windows CPU numpy module not found URL: https://github.com/apache/incubator-mxnet/issues/15879 Pipeline - http://jenkins.mxnet-ci.amazon-ml.com/blue/organizations/jenkins/mxnet-validation%2Fwindows-cpu/detail/PR-15783/9/pipeline Multiple

[GitHub] [incubator-mxnet] mxnet-label-bot commented on issue #15879: [CI] Windows CPU numpy module not found

2019-08-13 Thread GitBox
mxnet-label-bot commented on issue #15879: [CI] Windows CPU numpy module not found URL: https://github.com/apache/incubator-mxnet/issues/15879#issuecomment-520941971 Hey, this is the MXNet Label Bot. Thank you for submitting the issue! I will try and suggest some labels so that the

[GitHub] [incubator-mxnet] vandanavk commented on issue #15811: [MXNET-891] Support tuple of scales in upsample operator

2019-08-13 Thread GitBox
vandanavk commented on issue #15811: [MXNET-891] Support tuple of scales in upsample operator URL: https://github.com/apache/incubator-mxnet/pull/15811#issuecomment-520941085 Could you add the results of your experiments to the PR description?

[GitHub] [incubator-mxnet] stu1130 opened a new pull request #15878: numpy multinomial op

2019-08-13 Thread GitBox
stu1130 opened a new pull request #15878: numpy multinomial op URL: https://github.com/apache/incubator-mxnet/pull/15878 ## Description ## numpy multinomial op ## Checklist ## ### Essentials ### Please feel free to remove inapplicable items for your PR. - [x] The PR title

[GitHub] [incubator-mxnet] apeforest commented on a change in pull request #15761: [OpPerf] Handle positional arguments

2019-08-13 Thread GitBox
apeforest commented on a change in pull request #15761: [OpPerf] Handle positional arguments URL: https://github.com/apache/incubator-mxnet/pull/15761#discussion_r313532616 ## File path: benchmark/opperf/utils/benchmark_utils.py ## @@ -28,40 +28,56 @@ def

[GitHub] [incubator-mxnet] hzfan commented on issue #15855: [Numpy] cumprod

2019-08-13 Thread GitBox
hzfan commented on issue #15855: [Numpy] cumprod URL: https://github.com/apache/incubator-mxnet/pull/15855#issuecomment-520937187 I created 2 new files: cumprod.py and cumprod.cc. If there are better namespaces, plz let me know.

[GitHub] [incubator-mxnet] hzfan commented on a change in pull request #15855: [Numpy] cumprod

2019-08-13 Thread GitBox
hzfan commented on a change in pull request #15855: [Numpy] cumprod URL: https://github.com/apache/incubator-mxnet/pull/15855#discussion_r313528166 ## File path: contrib/tvmop/basic/ufunc.py ## @@ -48,3 +51,186 @@ def vadd_gpu(dtype, ndim): s[C].bind(bx,

[GitHub] [incubator-mxnet] apeforest commented on issue #15808: Add option to choose between OMP implementations

2019-08-13 Thread GitBox
apeforest commented on issue #15808: Add option to choose between OMP implementations URL: https://github.com/apache/incubator-mxnet/pull/15808#issuecomment-520935093 @larroy What's the effort required to implement the multi-selection as you earlier proposed? If this only blocks debugging

[GitHub] [incubator-mxnet] larroy commented on a change in pull request #15808: Add option to choose between OMP implementations

2019-08-13 Thread GitBox
larroy commented on a change in pull request #15808: Add option to choose between OMP implementations URL: https://github.com/apache/incubator-mxnet/pull/15808#discussion_r313513211 ## File path: CMakeLists.txt ## @@ -24,6 +24,7 @@ mxnet_option(USE_OLDCMAKECUDA "Build

[GitHub] [incubator-mxnet] larroy commented on issue #15808: Add option to choose between OMP implementations

2019-08-13 Thread GitBox
larroy commented on issue #15808: Add option to choose between OMP implementations URL: https://github.com/apache/incubator-mxnet/pull/15808#issuecomment-520923257 @lebeg you might be right, but getting this working is urgent as we can't debug. I would propose doing it incrementally or

[GitHub] [incubator-mxnet] KellenSunderland edited a comment on issue #15613: [Discussion] 1.5.1 Patch Release

2019-08-13 Thread GitBox
KellenSunderland edited a comment on issue #15613: [Discussion] 1.5.1 Patch Release URL: https://github.com/apache/incubator-mxnet/issues/15613#issuecomment-520910310 First three cherry-picked PRs: https://github.com/apache/incubator-mxnet/pull/15875

[GitHub] [incubator-mxnet] KellenSunderland opened a new pull request #15877: [v1.5.x] prevent TRT_Logger to be destroyed before TRT engine (#14898)

2019-08-13 Thread GitBox
KellenSunderland opened a new pull request #15877: [v1.5.x] prevent TRT_Logger to be destroyed before TRT engine (#14898) URL: https://github.com/apache/incubator-mxnet/pull/15877 ## Description ## prevent TRT_Logger to be destroyed before TRT engine ## Checklist ## ###

[GitHub] [incubator-mxnet] KellenSunderland closed pull request #15876: [v1.5.x] prevent TRT_Logger to be destroyed before TRT engine

2019-08-13 Thread GitBox
KellenSunderland closed pull request #15876: [v1.5.x] prevent TRT_Logger to be destroyed before TRT engine URL: https://github.com/apache/incubator-mxnet/pull/15876 This is an automated message from the Apache Git Service.

[GitHub] [incubator-mxnet] KellenSunderland opened a new pull request #15876: [v1.5.x] prevent TRT_Logger to be destroyed before TRT engine

2019-08-13 Thread GitBox
KellenSunderland opened a new pull request #15876: [v1.5.x] prevent TRT_Logger to be destroyed before TRT engine URL: https://github.com/apache/incubator-mxnet/pull/15876 ## Description ## prevent TRT_Logger to be destroyed before TRT engine ## Checklist ## ### Essentials ###

[GitHub] [incubator-mxnet] KellenSunderland commented on issue #15613: [Discussion] 1.5.1 Patch Release

2019-08-13 Thread GitBox
KellenSunderland commented on issue #15613: [Discussion] 1.5.1 Patch Release URL: https://github.com/apache/incubator-mxnet/issues/15613#issuecomment-520910310 First two cherry-picked PRs: https://github.com/apache/incubator-mxnet/pull/15875

[GitHub] [incubator-mxnet] KellenSunderland opened a new pull request #15875: [v1.5.x] Added sub and mul to ONNX->TensorRT conversion (#15344)

2019-08-13 Thread GitBox
KellenSunderland opened a new pull request #15875: [v1.5.x] Added sub and mul to ONNX->TensorRT conversion (#15344) URL: https://github.com/apache/incubator-mxnet/pull/15875 ## Description ## Added the sub/mul operators to the MXnet -> ONNX conversion, for usage in the ONNX -> tensorRT

[GitHub] [incubator-mxnet] KellenSunderland opened a new pull request #15874: [v1.5.x] Fix gamma 1 5

2019-08-13 Thread GitBox
KellenSunderland opened a new pull request #15874: [v1.5.x] Fix gamma 1 5 URL: https://github.com/apache/incubator-mxnet/pull/15874 ## Description ## the current nnvm->onnx->tensorrt conversion is ignoring the fix_gamma field for batch norm layer. This commit tries to solve this

[GitHub] [incubator-mxnet] samskalicky commented on a change in pull request #14860: [Review, don't merge before 1.5] Update TRT tutorial with new APIs

2019-08-13 Thread GitBox
samskalicky commented on a change in pull request #14860: [Review, don't merge before 1.5] Update TRT tutorial with new APIs URL: https://github.com/apache/incubator-mxnet/pull/14860#discussion_r313487491 ## File path: docs/tutorials/tensorrt/inference_with_trt.md ## @@

[incubator-mxnet] branch master updated: cuDNN support cleanup (#15812)

2019-08-13 Thread kellen
This is an automated email from the ASF dual-hosted git repository. kellen 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 c81535c cuDNN support cleanup

[GitHub] [incubator-mxnet] KellenSunderland commented on issue #15613: [Discussion] 1.5.1 Patch Release

2019-08-13 Thread GitBox
KellenSunderland commented on issue #15613: [Discussion] 1.5.1 Patch Release URL: https://github.com/apache/incubator-mxnet/issues/15613#issuecomment-520903165 No problem Tao, I can probably cherry-pick them a bit later today.

[GitHub] [incubator-mxnet] KellenSunderland merged pull request #15812: cuDNN support cleanup

2019-08-13 Thread GitBox
KellenSunderland merged pull request #15812: cuDNN support cleanup URL: https://github.com/apache/incubator-mxnet/pull/15812 This is an automated message from the Apache Git Service. To respond to the message, please log on

[GitHub] [incubator-mxnet] samskalicky commented on a change in pull request #14860: [Review, don't merge before 1.5] Update TRT tutorial with new APIs

2019-08-13 Thread GitBox
samskalicky commented on a change in pull request #14860: [Review, don't merge before 1.5] Update TRT tutorial with new APIs URL: https://github.com/apache/incubator-mxnet/pull/14860#discussion_r313486166 ## File path: docs/tutorials/tensorrt/inference_with_trt.md ## @@

[GitHub] [incubator-mxnet] jmacglashan edited a comment on issue #8703: [DISCUSSION] python2 deprecation

2019-08-13 Thread GitBox
jmacglashan edited a comment on issue #8703: [DISCUSSION] python2 deprecation URL: https://github.com/apache/incubator-mxnet/issues/8703#issuecomment-520881450 Pipe dream: I'd love it if Mxnet not only dropped Python 2 support for a more consistent design, but also went all in on Python

[GitHub] [incubator-mxnet] jmacglashan commented on issue #8703: [DISCUSSION] python2 deprecation

2019-08-13 Thread GitBox
jmacglashan commented on issue #8703: [DISCUSSION] python2 deprecation URL: https://github.com/apache/incubator-mxnet/issues/8703#issuecomment-520881450 Pipe dream: I'd love it if Mxnet not only dropped Python 2 support for a more consistent design, but also went all in on Python 3.6 for

[GitHub] [incubator-mxnet] TaoLv commented on issue #15849: [mkldnn-v1.0] Rebase the feature branch to the latest master

2019-08-13 Thread GitBox
TaoLv commented on issue #15849: [mkldnn-v1.0] Rebase the feature branch to the latest master URL: https://github.com/apache/incubator-mxnet/pull/15849#issuecomment-520870857 @pengzhao-intel Please review and approve if possible. Thanks!

[GitHub] [incubator-mxnet] TaoLv commented on issue #15873: [v1.5.x] fix LinearRegressionOutput with empty label (#15620)

2019-08-13 Thread GitBox
TaoLv commented on issue #15873: [v1.5.x] fix LinearRegressionOutput with empty label (#15620) URL: https://github.com/apache/incubator-mxnet/pull/15873#issuecomment-520868917 @samskalicky Please help to review. Hope it can fix your issue of 1.5.0.

[GitHub] [incubator-mxnet] TaoLv opened a new pull request #15873: [v1.5.x] fix LinearRegressionOutput with empty label (#15620)

2019-08-13 Thread GitBox
TaoLv opened a new pull request #15873: [v1.5.x] fix LinearRegressionOutput with empty label (#15620) URL: https://github.com/apache/incubator-mxnet/pull/15873 ## Description ## This PR intends to cherry pick #15620 from the master branch to v1.5.x branch to fix issue

[GitHub] [incubator-mxnet] xnnxax527 commented on issue #15796: Model Quantization with CUDNN

2019-08-13 Thread GitBox
xnnxax527 commented on issue #15796: Model Quantization with CUDNN URL: https://github.com/apache/incubator-mxnet/issues/15796#issuecomment-520865110 Hi @xinyu-intel , I see you release the calibration and quantization code on Intel MKLDNN, thanks. I am so interested in quantizing

[GitHub] [incubator-mxnet] mseeger commented on a change in pull request #15795: [Numpy] Differentiable svd

2019-08-13 Thread GitBox
mseeger commented on a change in pull request #15795: [Numpy] Differentiable svd URL: https://github.com/apache/incubator-mxnet/pull/15795#discussion_r313422488 ## File path: src/operator/numpy/linalg/np_gesvd-inl.h ## @@ -0,0 +1,298 @@ +/* + * Licensed to the Apache

[GitHub] [incubator-mxnet] mseeger commented on a change in pull request #15795: [Numpy] Differentiable svd

2019-08-13 Thread GitBox
mseeger commented on a change in pull request #15795: [Numpy] Differentiable svd URL: https://github.com/apache/incubator-mxnet/pull/15795#discussion_r313421782 ## File path: src/operator/numpy/linalg/np_gesvd-inl.h ## @@ -0,0 +1,298 @@ +/* + * Licensed to the Apache

[GitHub] [incubator-mxnet] mseeger commented on a change in pull request #15795: [Numpy] Differentiable svd

2019-08-13 Thread GitBox
mseeger commented on a change in pull request #15795: [Numpy] Differentiable svd URL: https://github.com/apache/incubator-mxnet/pull/15795#discussion_r313421187 ## File path: src/operator/numpy/linalg/np_gesvd-inl.h ## @@ -0,0 +1,298 @@ +/* + * Licensed to the Apache

[GitHub] [incubator-mxnet] kshitij12345 edited a comment on issue #13958: Windows builds running out of heap space in CI

2019-08-13 Thread GitBox
kshitij12345 edited a comment on issue #13958: Windows builds running out of heap space in CI URL: https://github.com/apache/incubator-mxnet/issues/13958#issuecomment-520850993 I have run into the issue a few times now.

[GitHub] [incubator-mxnet] mseeger commented on a change in pull request #15795: [Numpy] Differentiable svd

2019-08-13 Thread GitBox
mseeger commented on a change in pull request #15795: [Numpy] Differentiable svd URL: https://github.com/apache/incubator-mxnet/pull/15795#discussion_r313420294 ## File path: src/operator/numpy/linalg/np_gesvd-inl.h ## @@ -0,0 +1,298 @@ +/* + * Licensed to the Apache

[GitHub] [incubator-mxnet] kshitij12345 commented on issue #13958: Windows builds running out of heap space in CI

2019-08-13 Thread GitBox
kshitij12345 commented on issue #13958: Windows builds running out of heap space in CI URL: https://github.com/apache/incubator-mxnet/issues/13958#issuecomment-520850993 I have run into the issue a few times now.

[GitHub] [incubator-mxnet] vandanavk commented on issue #15872: Add a contrib operator for dynamic reshape

2019-08-13 Thread GitBox
vandanavk commented on issue #15872: Add a contrib operator for dynamic reshape URL: https://github.com/apache/incubator-mxnet/pull/15872#issuecomment-520848348 @mxnet-label-bot add [pr-work-in-progress, Operator, ONNX] This

[GitHub] [incubator-mxnet] vandanavk opened a new pull request #15872: Add a contrib operator for dynamic reshape

2019-08-13 Thread GitBox
vandanavk opened a new pull request #15872: Add a contrib operator for dynamic reshape URL: https://github.com/apache/incubator-mxnet/pull/15872 ## Description ## MXNet's reshape operator expects the shape to be a static tuple. In some models, the shape attribute is decided based on

[GitHub] [incubator-mxnet] zoeygxy commented on issue #15763: Numpy indexing

2019-08-13 Thread GitBox
zoeygxy commented on issue #15763: Numpy indexing URL: https://github.com/apache/incubator-mxnet/pull/15763#issuecomment-520847913 Still fixing autograd for zero-size tensors. This is an automated message from the Apache Git

[GitHub] [incubator-mxnet] hzfan commented on a change in pull request #15795: [Numpy] Differentiable svd

2019-08-13 Thread GitBox
hzfan commented on a change in pull request #15795: [Numpy] Differentiable svd URL: https://github.com/apache/incubator-mxnet/pull/15795#discussion_r313413734 ## File path: src/operator/numpy/linalg/np_gesvd-inl.h ## @@ -0,0 +1,298 @@ +/* + * Licensed to the Apache

[GitHub] [incubator-mxnet] hzfan commented on a change in pull request #15795: [Numpy] Differentiable svd

2019-08-13 Thread GitBox
hzfan commented on a change in pull request #15795: [Numpy] Differentiable svd URL: https://github.com/apache/incubator-mxnet/pull/15795#discussion_r313412351 ## File path: src/operator/numpy/linalg/np_gesvd-inl.h ## @@ -0,0 +1,298 @@ +/* + * Licensed to the Apache

  1   2   >