[GitHub] [incubator-mxnet] yajiedesign commented on a change in pull request #18362: fix windows dll search path in python 3.8

2020-05-19 Thread GitBox
yajiedesign commented on a change in pull request #18362: URL: https://github.com/apache/incubator-mxnet/pull/18362#discussion_r427779970 ## File path: python/mxnet/libinfo.py ## @@ -73,6 +73,11 @@ def find_lib_path(prefix='libmxnet'): 'List of candi

[GitHub] [incubator-mxnet] yajiedesign commented on a change in pull request #18362: fix windows dll search path in python 3.8

2020-05-19 Thread GitBox
yajiedesign commented on a change in pull request #18362: URL: https://github.com/apache/incubator-mxnet/pull/18362#discussion_r427778721 ## File path: python/mxnet/libinfo.py ## @@ -73,6 +73,11 @@ def find_lib_path(prefix='libmxnet'): 'List of candi

[GitHub] [incubator-mxnet] leezu commented on a change in pull request #18362: fix windows dll search path in python 3.8

2020-05-19 Thread GitBox
leezu commented on a change in pull request #18362: URL: https://github.com/apache/incubator-mxnet/pull/18362#discussion_r427774535 ## File path: python/mxnet/libinfo.py ## @@ -73,6 +73,11 @@ def find_lib_path(prefix='libmxnet'): 'List of candidates:

[GitHub] [incubator-mxnet] bgawrych commented on pull request #18320: Improve log_softmax op performance by using DNNL support

2020-05-19 Thread GitBox
bgawrych commented on pull request #18320: URL: https://github.com/apache/incubator-mxnet/pull/18320#issuecomment-631263232 @mxnet-bot run ci [miscellaneous] This is an automated message from the Apache Git Service. To respon

[GitHub] [incubator-mxnet] mxnet-bot commented on pull request #18316: [1.7.x] Backport of LSTM and GRU fix (#17898) and RNN op (#17632)

2020-05-19 Thread GitBox
mxnet-bot commented on pull request #18316: URL: https://github.com/apache/incubator-mxnet/pull/18316#issuecomment-631262559 Jenkins CI successfully triggered : [edge, windows-gpu] This is an automated message from the Apache

[GitHub] [incubator-mxnet] bgawrych commented on pull request #18316: [1.7.x] Backport of LSTM and GRU fix (#17898) and RNN op (#17632)

2020-05-19 Thread GitBox
bgawrych commented on pull request #18316: URL: https://github.com/apache/incubator-mxnet/pull/18316#issuecomment-631262502 @mxnet-bot run ci [edge, windows-gpu] This is an automated message from the Apache Git Service. To re

[GitHub] [incubator-mxnet] bgawrych commented on pull request #18317: [1.x] Backport of LSTM and GRU fix (#17898) and RNN op (#17632)

2020-05-19 Thread GitBox
bgawrych commented on pull request #18317: URL: https://github.com/apache/incubator-mxnet/pull/18317#issuecomment-631262376 @mxnet-bot run ci [edge, unix-gpu] This is an automated message from the Apache Git Service. To respo

[GitHub] [incubator-mxnet] TriLoo edited a comment on issue #18364: mx.gluon.data.Dataset class not support multiprocessing.Pool()

2020-05-19 Thread GitBox
TriLoo edited a comment on issue #18364: URL: https://github.com/apache/incubator-mxnet/issues/18364#issuecomment-631253695 The `readelf -d libmxnet.so | grep NEEDED` outputs: `CMake`: ``` 0x0001 (NEEDED) Shared library: [libdl.so.2] 0x0001

[GitHub] [incubator-mxnet] TriLoo commented on issue #18364: mx.gluon.data.Dataset class not support multiprocessing.Pool()

2020-05-19 Thread GitBox
TriLoo commented on issue #18364: URL: https://github.com/apache/incubator-mxnet/issues/18364#issuecomment-631253695 The `readelf -d libmxnet.so | grep NEEDED` outputs: `CMake`: ``` 0x0001 (NEEDED) Shared library: [libdl.so.2] 0x0001 (NEEDE

[GitHub] [incubator-mxnet] leezu commented on issue #18364: mx.gluon.data.Dataset class not support multiprocessing.Pool()

2020-05-19 Thread GitBox
leezu commented on issue #18364: URL: https://github.com/apache/incubator-mxnet/issues/18364#issuecomment-631251310 I suspect you're looking at transitive dependencies instead of the actual dependencies of libmxnet. Please use `readelf -d libmxnet.so | grep NEEDED` to check the direct dep

[GitHub] [incubator-mxnet] TriLoo commented on issue #18364: mx.gluon.data.Dataset class not support multiprocessing.Pool()

2020-05-19 Thread GitBox
TriLoo commented on issue #18364: URL: https://github.com/apache/incubator-mxnet/issues/18364#issuecomment-631248003 I found that the shared lib `libmxnet.so` generate by `CMakeLists.txt` did not depend on `libiomp5.so`, but depend on `libgomp.so` only. meanwhile, the shared lib generate

[GitHub] [incubator-mxnet] TriLoo edited a comment on issue #18364: mx.gluon.data.Dataset class not support multiprocessing.Pool()

2020-05-19 Thread GitBox
TriLoo edited a comment on issue #18364: URL: https://github.com/apache/incubator-mxnet/issues/18364#issuecomment-631241605 Sure, when I compile it using `Makefile`, this bug doesn't exist, but the `USE_INT64_TENSOR_SIZE =1` would raise the `begin,end` not declared error, i found the type

[GitHub] [incubator-mxnet] TriLoo edited a comment on issue #18364: mx.gluon.data.Dataset class not support multiprocessing.Pool()

2020-05-19 Thread GitBox
TriLoo edited a comment on issue #18364: URL: https://github.com/apache/incubator-mxnet/issues/18364#issuecomment-631241605 Sure, when I compile it using `Makefile`, this bug doesn't exist, but the `USE_INT64_TENSOR_SIZE =1` would raise the `begin,end` not declared error, i found the type

[incubator-mxnet] annotated tag 1.5.0.rc2 updated (75a9e18 -> bc631ea)

2020-05-19 Thread sxjscience
This is an automated email from the ASF dual-hosted git repository. sxjscience pushed a change to annotated tag 1.5.0.rc2 in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git. *** WARNING: tag 1.5.0.rc2 was modified! *** from 75a9e18 (commit) to bc631ea (tag) taggi

[GitHub] [incubator-mxnet] TriLoo edited a comment on issue #18364: mx.gluon.data.Dataset class not support multiprocessing.Pool()

2020-05-19 Thread GitBox
TriLoo edited a comment on issue #18364: URL: https://github.com/apache/incubator-mxnet/issues/18364#issuecomment-631241605 Sure, when I compile it using `Makefile`, this bug doesn't exist, but the `USE_INT64_TENSOR_SIZE =1` would raise the `begin,end` not declared error, i found the type

[GitHub] [incubator-mxnet] mxnet-bot commented on pull request #18370: [Numpy] Fix gluon activations

2020-05-19 Thread GitBox
mxnet-bot commented on pull request #18370: URL: https://github.com/apache/incubator-mxnet/pull/18370#issuecomment-631241564 Hey @sxjscience , Thanks for submitting the PR All tests are already queued to run once. If tests fail, you can trigger one or more tests again with the following

[GitHub] [incubator-mxnet] Yiyan66 opened a new pull request #18371: [numpy] fix op repeat with list input

2020-05-19 Thread GitBox
Yiyan66 opened a new pull request #18371: URL: https://github.com/apache/incubator-mxnet/pull/18371 ## Description ## #16357 repeat ## Checklist ## ### Essentials ### Please feel free to remove inapplicable items for your PR. - [ ] The PR title starts with [MXNET-$JIRA_ID]

[incubator-mxnet] annotated tag 1.5.0.rc2 updated (75a9e18 -> bc631ea)

2020-05-19 Thread sxjscience
This is an automated email from the ASF dual-hosted git repository. sxjscience pushed a change to annotated tag 1.5.0.rc2 in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git. *** WARNING: tag 1.5.0.rc2 was modified! *** from 75a9e18 (commit) to bc631ea (tag) taggi

[GitHub] [incubator-mxnet] mxnet-bot commented on pull request #18371: [numpy] fix op repeat with list input

2020-05-19 Thread GitBox
mxnet-bot commented on pull request #18371: URL: https://github.com/apache/incubator-mxnet/pull/18371#issuecomment-631241573 Hey @Yiyan66 , Thanks for submitting the PR All tests are already queued to run once. If tests fail, you can trigger one or more tests again with the following co

[GitHub] [incubator-mxnet] sxjscience opened a new pull request #18370: [Numpy] Fix gluon activations

2020-05-19 Thread GitBox
sxjscience opened a new pull request #18370: URL: https://github.com/apache/incubator-mxnet/pull/18370 ## Description ## Fix activations. ## Checklist ## ### Essentials ### Please feel free to remove inapplicable items for your PR. - [ ] The PR title starts with [MXNET-$JI

[GitHub] [incubator-mxnet] TriLoo commented on issue #18364: mx.gluon.data.Dataset class not support multiprocessing.Pool()

2020-05-19 Thread GitBox
TriLoo commented on issue #18364: URL: https://github.com/apache/incubator-mxnet/issues/18364#issuecomment-631241605 Sure, when I compile it using `Makefile`, this bug doesn't exist, but the `USE_INT64_TENSOR_SIZE =1` would raise the `begin,end` not declared error, i found the types of th

[GitHub] [incubator-mxnet] leezu commented on issue #18364: mx.gluon.data.Dataset class not support multiprocessing.Pool()

2020-05-19 Thread GitBox
leezu commented on issue #18364: URL: https://github.com/apache/incubator-mxnet/issues/18364#issuecomment-631239070 Thanks for confirming this. You mentioned before that the bug does not exist when compiling with Makefile. Are you certain about that? If so, can you provide a minimal repro

[GitHub] [incubator-mxnet] TriLoo commented on issue #18364: mx.gluon.data.Dataset class not support multiprocessing.Pool()

2020-05-19 Thread GitBox
TriLoo commented on issue #18364: URL: https://github.com/apache/incubator-mxnet/issues/18364#issuecomment-631237202 I used system openmp instead of `3rdparty/openmp`, the problem still exists. when running into `multiprocessing.Pool(...)`, the CPU is 100% used but always cannot continue

[GitHub] [incubator-mxnet] leezu commented on a change in pull request #18323: Fix race condition in unittest by pytest temp_dir fixtures

2020-05-19 Thread GitBox
leezu commented on a change in pull request #18323: URL: https://github.com/apache/incubator-mxnet/pull/18323#discussion_r427732782 ## File path: tests/python/unittest/test_gluon_data.py ## @@ -138,52 +137,52 @@ def test_sampler(): assert sorted(sum(list(rand_batch_keep),

[GitHub] [incubator-mxnet] ys2843 commented on pull request #18369: Replace google CDN with JQuery's own CDN

2020-05-19 Thread GitBox
ys2843 commented on pull request #18369: URL: https://github.com/apache/incubator-mxnet/pull/18369#issuecomment-631214784 @mxnet-bot run ci [unix-cpu] This is an automated message from the Apache Git Service. To respond to th

[GitHub] [incubator-mxnet] mxnet-bot commented on pull request #18369: Replace google CDN with JQuery's own CDN

2020-05-19 Thread GitBox
mxnet-bot commented on pull request #18369: URL: https://github.com/apache/incubator-mxnet/pull/18369#issuecomment-631214830 Jenkins CI successfully triggered : [unix-cpu] This is an automated message from the Apache Git Serv

[GitHub] [incubator-mxnet] TriLoo commented on issue #18364: mx.gluon.data.Dataset class not support multiprocessing.Pool()

2020-05-19 Thread GitBox
TriLoo commented on issue #18364: URL: https://github.com/apache/incubator-mxnet/issues/18364#issuecomment-631212112 I will try this later ~ This is an automated message from the Apache Git Service. To respond to the message

[GitHub] [incubator-mxnet] leezu commented on issue #18364: mx.gluon.data.Dataset class not support multiprocessing.Pool()

2020-05-19 Thread GitBox
leezu commented on issue #18364: URL: https://github.com/apache/incubator-mxnet/issues/18364#issuecomment-631211135 You can also try delete the 3rdparty/openmp and use the cmake build. This is an automated message from the

[GitHub] [incubator-mxnet] TriLoo commented on issue #18364: mx.gluon.data.Dataset class not support multiprocessing.Pool()

2020-05-19 Thread GitBox
TriLoo commented on issue #18364: URL: https://github.com/apache/incubator-mxnet/issues/18364#issuecomment-631195655 @leezu I tried `Makefile & make` and found no problem running the mentioned `multiprocessing.Pool(...)`,. However, a build error happened when the ` USE_INT64_TENSOR_SI

[GitHub] [incubator-mxnet] Yiyan66 commented on pull request #18286: [numpy] Fix mean, prod with input of empty array

2020-05-19 Thread GitBox
Yiyan66 commented on pull request #18286: URL: https://github.com/apache/incubator-mxnet/pull/18286#issuecomment-631177120 @mxnet-bot run ci [windows-cpu] This is an automated message from the Apache Git Service. To respond t

[GitHub] [incubator-mxnet] mxnet-bot commented on pull request #18286: [numpy] Fix mean, prod with input of empty array

2020-05-19 Thread GitBox
mxnet-bot commented on pull request #18286: URL: https://github.com/apache/incubator-mxnet/pull/18286#issuecomment-631177160 Jenkins CI successfully triggered : [windows-cpu] This is an automated message from the Apache Git S

[GitHub] [incubator-mxnet] ys2843 edited a comment on pull request #18369: Replace google CDN with JQuery's own CDN

2020-05-19 Thread GitBox
ys2843 edited a comment on pull request #18369: URL: https://github.com/apache/incubator-mxnet/pull/18369#issuecomment-631134548 @mxnet-label-bot update [pr-awaiting-merge, website] This is an automated message from the Apach

[GitHub] [incubator-mxnet] ys2843 edited a comment on pull request #18369: Replace google CDN with JQuery's own CDN

2020-05-19 Thread GitBox
ys2843 edited a comment on pull request #18369: URL: https://github.com/apache/incubator-mxnet/pull/18369#issuecomment-631134548 @mxnet-label-bot add [website, pr-awaiting-merge] This is an automated message from the Apache G

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

2020-05-19 Thread aaronmarkham
This is an automated email from the ASF dual-hosted git repository. aaronmarkham 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 309efc8 Bump the publis

[GitHub] [incubator-mxnet] leezu commented on pull request #18323: Fix race condition in unittest by mark as serial tests

2020-05-19 Thread GitBox
leezu commented on pull request #18323: URL: https://github.com/apache/incubator-mxnet/pull/18323#issuecomment-631151888 @mxnet-bot run ci [centos-cpu, unix-cpu] This is an automated message from the Apache Git Service. To re

[GitHub] [incubator-mxnet] mxnet-bot commented on pull request #18323: Fix race condition in unittest by mark as serial tests

2020-05-19 Thread GitBox
mxnet-bot commented on pull request #18323: URL: https://github.com/apache/incubator-mxnet/pull/18323#issuecomment-631151946 Jenkins CI successfully triggered : [centos-cpu, unix-cpu] This is an automated message from the Apa

[incubator-mxnet] branch master updated: New set default dtype (#18251)

2020-05-19 Thread liuyizhi
This is an automated email from the ASF dual-hosted git repository. liuyizhi 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 b904d48 New set default dtype (#1825

[incubator-mxnet] branch master updated: New set default dtype (#18251)

2020-05-19 Thread liuyizhi
This is an automated email from the ASF dual-hosted git repository. liuyizhi 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 b904d48 New set default dtype (#1825

[GitHub] [incubator-mxnet] yzhliu closed issue #18060: [Numpy] Dense does not support float32 + float64.

2020-05-19 Thread GitBox
yzhliu closed issue #18060: URL: https://github.com/apache/incubator-mxnet/issues/18060 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go

[GitHub] [incubator-mxnet] yzhliu commented on pull request #18251: New set default dtype

2020-05-19 Thread GitBox
yzhliu commented on pull request #18251: URL: https://github.com/apache/incubator-mxnet/pull/18251#issuecomment-631144271 Thanks @JiangZhaoh @sxjscience This is an automated message from the Apache Git Service. To respond to

[GitHub] [incubator-mxnet] yzhliu merged pull request #18251: New set default dtype

2020-05-19 Thread GitBox
yzhliu merged pull request #18251: URL: https://github.com/apache/incubator-mxnet/pull/18251 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above

[GitHub] [incubator-mxnet] ys2843 commented on pull request #18369: Replace google CDN with JQuery's own CDN

2020-05-19 Thread GitBox
ys2843 commented on pull request #18369: URL: https://github.com/apache/incubator-mxnet/pull/18369#issuecomment-631134548 @mxnet-label-bot add [website, pr-awaiting-review] This is an automated message from the Apache Git Ser

[GitHub] [incubator-mxnet] ArmageddonKnight commented on pull request #18228: [MXNET-1450] Improve the backward mirroring implementation

2020-05-19 Thread GitBox
ArmageddonKnight commented on pull request #18228: URL: https://github.com/apache/incubator-mxnet/pull/18228#issuecomment-631131066 > @ArmageddonKnight would you mind sharing some performance result with this feature enabled? According to our evaluation on a single machine with RTX 2

[GitHub] [incubator-mxnet] ArmageddonKnight edited a comment on pull request #18228: [MXNET-1450] Improve the backward mirroring implementation

2020-05-19 Thread GitBox
ArmageddonKnight edited a comment on pull request #18228: URL: https://github.com/apache/incubator-mxnet/pull/18228#issuecomment-631131066 > @ArmageddonKnight would you mind sharing some performance result with this feature enabled? @eric-haibin-lin According to our evaluation on a s

[GitHub] [incubator-mxnet] mseth10 commented on a change in pull request #18350: Add better partial args/aux handling in symbol optimize_for

2020-05-19 Thread GitBox
mseth10 commented on a change in pull request #18350: URL: https://github.com/apache/incubator-mxnet/pull/18350#discussion_r427643159 ## File path: python/mxnet/symbol/symbol.py ## @@ -1460,19 +1461,36 @@ def optimize_for(self, backend, args=None, aux=None, ctx=None, **kwargs)

[GitHub] [incubator-mxnet] ys2843 opened a new pull request #18369: Replace google CDN with JQuery's own CDN

2020-05-19 Thread GitBox
ys2843 opened a new pull request #18369: URL: https://github.com/apache/incubator-mxnet/pull/18369 ## Description ## This PR fix #18367 , use JQuery's own CDN instead of google CDN. ## Checklist ## ### Essentials ### Please feel free to remove inapplicable items for you

[GitHub] [incubator-mxnet] leezu commented on a change in pull request #18363: Fix reference cycle in gluon.Trainer

2020-05-19 Thread GitBox
leezu commented on a change in pull request #18363: URL: https://github.com/apache/incubator-mxnet/pull/18363#discussion_r427640624 ## File path: conftest.py ## @@ -229,3 +230,50 @@ def doctest(doctest_namespace): logging.warning('Unable to import numpy/mxnet. Skipping

[GitHub] [incubator-mxnet] leezu commented on a change in pull request #18363: Fix reference cycle in gluon.Trainer

2020-05-19 Thread GitBox
leezu commented on a change in pull request #18363: URL: https://github.com/apache/incubator-mxnet/pull/18363#discussion_r427640438 ## File path: conftest.py ## @@ -229,3 +230,50 @@ def doctest(doctest_namespace): logging.warning('Unable to import numpy/mxnet. Skipping

[GitHub] [incubator-mxnet] mxnet-bot commented on pull request #18369: Replace google CDN with JQuery's own CDN

2020-05-19 Thread GitBox
mxnet-bot commented on pull request #18369: URL: https://github.com/apache/incubator-mxnet/pull/18369#issuecomment-631124515 Hey @ys2843 , Thanks for submitting the PR All tests are already queued to run once. If tests fail, you can trigger one or more tests again with the following com

[GitHub] [incubator-mxnet] leezu commented on pull request #18365: Introduce MXNET_BUILD_STATIC=ON

2020-05-19 Thread GitBox
leezu commented on pull request #18365: URL: https://github.com/apache/incubator-mxnet/pull/18365#issuecomment-631123943 > In current static mode a large static object and a small shared surrogate is build, that's it now. Actually not. There is a hack further down in the cmake file w

[GitHub] [incubator-mxnet] marcoabreu commented on issue #18367: Google JQuery CDN [https://ajax.googleapis.com] is banned in China

2020-05-19 Thread GitBox
marcoabreu commented on issue #18367: URL: https://github.com/apache/incubator-mxnet/issues/18367#issuecomment-631108556 Agree, I think replacing with jQuery CDN for now is the fastest and easiest way. This is an automated

[GitHub] [incubator-mxnet-ci] marcoabreu commented on a change in pull request #25: Serverless implementation for jenkins pipeline monitor lambda

2020-05-19 Thread GitBox
marcoabreu commented on a change in pull request #25: URL: https://github.com/apache/incubator-mxnet-ci/pull/25#discussion_r427626182 ## File path: services/jenkins-pipeline-monitor/handler.py ## @@ -0,0 +1,134 @@ +import os +import boto3 +import json +import logging +import se

[GitHub] [incubator-mxnet] ys2843 edited a comment on issue #18367: Google JQuery CDN [https://ajax.googleapis.com] is banned in China

2020-05-19 Thread GitBox
ys2843 edited a comment on issue #18367: URL: https://github.com/apache/incubator-mxnet/issues/18367#issuecomment-631106737 @szha It is hard to tell about the speed of hosting it locally with website. But currently there are complains about the loading speed (Avg 19s) of MXNet website fro

[GitHub] [incubator-mxnet] ys2843 commented on issue #18367: Google JQuery CDN [https://ajax.googleapis.com] is banned in China

2020-05-19 Thread GitBox
ys2843 commented on issue #18367: URL: https://github.com/apache/incubator-mxnet/issues/18367#issuecomment-631106737 @szha It is hard to tell about the speed of hosting it locally with website. But currently there are complains about the loading speed (Avg 19s) of MXNet website from China

[GitHub] [incubator-mxnet] cbalint13 edited a comment on pull request #18365: Introduce MXNET_BUILD_STATIC=ON

2020-05-19 Thread GitBox
cbalint13 edited a comment on pull request #18365: URL: https://github.com/apache/incubator-mxnet/pull/18365#issuecomment-631102876 @leezu , Uhh, Ohh. * Can't make pure shared build without hurting CI very badly. * cmake's internal ```CMAKE_BUILD_SHARED``` would be perfect (

[GitHub] [incubator-mxnet] cbalint13 edited a comment on pull request #18365: Introduce MXNET_BUILD_STATIC=ON

2020-05-19 Thread GitBox
cbalint13 edited a comment on pull request #18365: URL: https://github.com/apache/incubator-mxnet/pull/18365#issuecomment-631102876 @leezu , Uhh, Ohh. * Can't make pure shared build without hurting CI very badly. * cmake's internal ```CMAKE_BUILD_SHARED``` would be perfect (

[GitHub] [incubator-mxnet] cbalint13 edited a comment on pull request #18365: Introduce MXNET_BUILD_STATIC=ON

2020-05-19 Thread GitBox
cbalint13 edited a comment on pull request #18365: URL: https://github.com/apache/incubator-mxnet/pull/18365#issuecomment-631102876 @leezu , Uhh, Ohh. * Can't make pure shared build without hurting CI very badly. * cmake's internal ```CMAKE_BUILD_SHARED``` would be perfect (

[GitHub] [incubator-mxnet] cbalint13 edited a comment on pull request #18365: Introduce MXNET_BUILD_STATIC=ON

2020-05-19 Thread GitBox
cbalint13 edited a comment on pull request #18365: URL: https://github.com/apache/incubator-mxnet/pull/18365#issuecomment-631102876 @leezu , Uhh, Ohh. * Can't make pure shared build without hurting CI very badly. * cmake's internal ```CMAKE_BUILD_SHARED``` would be perfect (

[GitHub] [incubator-mxnet] cbalint13 commented on pull request #18365: Introduce MXNET_BUILD_STATIC=ON

2020-05-19 Thread GitBox
cbalint13 commented on pull request #18365: URL: https://github.com/apache/incubator-mxnet/pull/18365#issuecomment-631102876 @leezu , Uhh, Ohh. * Can't make pure shared build without hurting CI very badly. * cmake's internal ```CMAKE_BUILD_SHARED``` would be perfect (but it

[GitHub] [incubator-mxnet] szha edited a comment on issue #18367: Google JQuery CDN [https://ajax.googleapis.com] is banned in China

2020-05-19 Thread GitBox
szha edited a comment on issue #18367: URL: https://github.com/apache/incubator-mxnet/issues/18367#issuecomment-631097651 @ys2843 thanks for sharing. Is the speed adequate for the items hosted locally with the website? If so, you may also consider simply downloading the uglified javascrip

[GitHub] [incubator-mxnet] szha commented on issue #18367: Google JQuery CDN [https://ajax.googleapis.com] is banned in China

2020-05-19 Thread GitBox
szha commented on issue #18367: URL: https://github.com/apache/incubator-mxnet/issues/18367#issuecomment-631097651 @ys2843 thanks for sharing. Is the speed adequate for the items hosted locally with the website? This is an

[GitHub] [incubator-mxnet] ys2843 commented on issue #18367: Google JQuery CDN [https://ajax.googleapis.com] is banned in China

2020-05-19 Thread GitBox
ys2843 commented on issue #18367: URL: https://github.com/apache/incubator-mxnet/issues/18367#issuecomment-631096175 > jquery has its own CDN which isn't affected by the blocking of google CDN. so the simplest approach to try is to use that https://code.jquery.com/ > > could you sum

[GitHub] [incubator-mxnet] szha edited a comment on issue #18367: Google JQuery CDN [https://ajax.googleapis.com] is banned in China

2020-05-19 Thread GitBox
szha edited a comment on issue #18367: URL: https://github.com/apache/incubator-mxnet/issues/18367#issuecomment-631094530 ECharts project worked on CDN in China according to this board report: https://cwiki.apache.org/confluence/display/INCUBATOR/May2019 We may reach out to them for

[GitHub] [incubator-mxnet] szha edited a comment on issue #18367: Google JQuery CDN [https://ajax.googleapis.com] is banned in China

2020-05-19 Thread GitBox
szha edited a comment on issue #18367: URL: https://github.com/apache/incubator-mxnet/issues/18367#issuecomment-631094530 ECharts project worked on CDN in China according to this board report: https://cwiki.apache.org/confluence/display/INCUBATOR/May2019 We may reach out to them for

[GitHub] [incubator-mxnet] szha commented on issue #18367: Google JQuery CDN [https://ajax.googleapis.com] is banned in China

2020-05-19 Thread GitBox
szha commented on issue #18367: URL: https://github.com/apache/incubator-mxnet/issues/18367#issuecomment-631094530 ECharts project worked on CDN in China according to this board report: https://cwiki.apache.org/confluence/display/INCUBATOR/May2019 We may reach out to them for their

[GitHub] [incubator-mxnet-ci] mseth10 commented on a change in pull request #25: Serverless implementation for jenkins pipeline monitor lambda

2020-05-19 Thread GitBox
mseth10 commented on a change in pull request #25: URL: https://github.com/apache/incubator-mxnet-ci/pull/25#discussion_r427605130 ## File path: services/jenkins-pipeline-monitor/handler.py ## @@ -0,0 +1,134 @@ +import os +import boto3 +import json +import logging +import secre

[GitHub] [incubator-mxnet] eric-haibin-lin commented on a change in pull request #18363: Fix reference cycle in gluon.Trainer

2020-05-19 Thread GitBox
eric-haibin-lin commented on a change in pull request #18363: URL: https://github.com/apache/incubator-mxnet/pull/18363#discussion_r427594015 ## File path: conftest.py ## @@ -229,3 +230,50 @@ def doctest(doctest_namespace): logging.warning('Unable to import numpy/mxnet

[GitHub] [incubator-mxnet] leezu commented on pull request #18349: Makefile bug fix for opencv4.

2020-05-19 Thread GitBox
leezu commented on pull request #18349: URL: https://github.com/apache/incubator-mxnet/pull/18349#issuecomment-631075786 Thanks @tkameyama. There are some CI issues on 1.x. We'll resolve them first and then retrigger the CI for your PR -

[GitHub] [incubator-mxnet] mxnet-bot commented on pull request #18362: fix windows dll search path in python 3.8

2020-05-19 Thread GitBox
mxnet-bot commented on pull request #18362: URL: https://github.com/apache/incubator-mxnet/pull/18362#issuecomment-631075085 Jenkins CI successfully triggered : [miscellaneous] This is an automated message from the Apache Git

[GitHub] [incubator-mxnet] leezu commented on pull request #18362: fix windows dll search path in python 3.8

2020-05-19 Thread GitBox
leezu commented on pull request #18362: URL: https://github.com/apache/incubator-mxnet/pull/18362#issuecomment-631075041 @mxnet-bot run ci [miscellaneous] This is an automated message from the Apache Git Service. To respond t

[GitHub] [incubator-mxnet] leezu commented on issue #18364: mx.gluon.data.Dataset class not support multiprocessing.Pool()

2020-05-19 Thread GitBox
leezu commented on issue #18364: URL: https://github.com/apache/incubator-mxnet/issues/18364#issuecomment-631074846 Should this bug be in the gluon-cv issue tracker? cc @zhreshold This is an automated message from th

[GitHub] [incubator-mxnet] leezu commented on pull request #18365: Introduce MXNET_BUILD_STATIC=OFF

2020-05-19 Thread GitBox
leezu commented on pull request #18365: URL: https://github.com/apache/incubator-mxnet/pull/18365#issuecomment-631072533 Thanks @cbalint13. I wonder if we should only build the static library if `MXNET_BUILD_STATIC=ON`, instead of building both static and shared libraries. If yes, would `M

[GitHub] [incubator-mxnet] sandeep-krishnamurthy edited a comment on issue #18367: Google JQuery CDN [https://ajax.googleapis.com] is banned in China

2020-05-19 Thread GitBox
sandeep-krishnamurthy edited a comment on issue #18367: URL: https://github.com/apache/incubator-mxnet/issues/18367#issuecomment-631063008 @ys2843 - Thanks for looking into this, is the jquery loading time causing huge delay in loading MXNet website in China? I remember a ticket by

[GitHub] [incubator-mxnet] sandeep-krishnamurthy commented on issue #18367: Google JQuery CDN [https://ajax.googleapis.com] is banned in China

2020-05-19 Thread GitBox
sandeep-krishnamurthy commented on issue #18367: URL: https://github.com/apache/incubator-mxnet/issues/18367#issuecomment-631063008 @ys2843 - Thanks for looking into this, is the jquery loading time causing huge delay in loading MXNet website in China? I remember a ticket by @aaronm

[GitHub] [incubator-mxnet] mxnet-bot commented on pull request #18368: [WIP] enable large tensor in np

2020-05-19 Thread GitBox
mxnet-bot commented on pull request #18368: URL: https://github.com/apache/incubator-mxnet/pull/18368#issuecomment-631060274 Hey @szha , Thanks for submitting the PR All tests are already queued to run once. If tests fail, you can trigger one or more tests again with the following comma

[GitHub] [incubator-mxnet] szha opened a new pull request #18368: [WIP] enable large tensor in np

2020-05-19 Thread GitBox
szha opened a new pull request #18368: URL: https://github.com/apache/incubator-mxnet/pull/18368 ## Description ## (Brief description on what this PR is about) ## Checklist ## ### Essentials ### Please feel free to remove inapplicable items for your PR. - [ ] The PR title

[GitHub] [incubator-mxnet] szha closed issue #17671: mxnet=1.6.0 for OSX on pypi does not work

2020-05-19 Thread GitBox
szha closed issue #17671: URL: https://github.com/apache/incubator-mxnet/issues/17671 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go t

[GitHub] [incubator-mxnet] szha edited a comment on issue #18367: Google JQuery CDN [https://ajax.googleapis.com] is banned in China

2020-05-19 Thread GitBox
szha edited a comment on issue #18367: URL: https://github.com/apache/incubator-mxnet/issues/18367#issuecomment-631056893 jquery has its own CDN which isn't affected by the blocking of google CDN. so the simplest approach to try is to use that https://code.jquery.com/ could you summ

[GitHub] [incubator-mxnet] szha commented on issue #18367: Google JQuery CDN [https://ajax.googleapis.com] is banned in China

2020-05-19 Thread GitBox
szha commented on issue #18367: URL: https://github.com/apache/incubator-mxnet/issues/18367#issuecomment-631056893 jquery has its own CDN which isn't affected by the blocking of google CDN. so the simplest approach to try is to use that https://code.jquery.com/ could you summarize h

[GitHub] [incubator-mxnet] ys2843 commented on issue #18367: Google JQuery CDN [https://ajax.googleapis.com] is banned in China

2020-05-19 Thread GitBox
ys2843 commented on issue #18367: URL: https://github.com/apache/incubator-mxnet/issues/18367#issuecomment-631044152 @mxnet-label-bot add [Website] This is an automated message from the Apache Git Service. To respond to the

[GitHub] [incubator-mxnet] ys2843 opened a new issue #18367: Google JQuery CDN [https://ajax.googleapis.com] is banned in China

2020-05-19 Thread GitBox
ys2843 opened a new issue #18367: URL: https://github.com/apache/incubator-mxnet/issues/18367 ## Description In MXNet website, JQuery script is loaded from google CDN in `` ```html https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js";> ``` But this CDN is know

[GitHub] [incubator-mxnet] ChaiBapchya commented on issue #17671: mxnet=1.6.0 for OSX on pypi does not work

2020-05-19 Thread GitBox
ChaiBapchya commented on issue #17671: URL: https://github.com/apache/incubator-mxnet/issues/17671#issuecomment-631020296 @leezu plz close. Thanks! This is an automated message from the Apache Git Service. To respond to the

[GitHub] [incubator-mxnet] ChaiBapchya commented on pull request #18261: [v1.7.x] Backport fixing batch_norm and layer_norm for large tensors (#17805)

2020-05-19 Thread GitBox
ChaiBapchya commented on pull request #18261: URL: https://github.com/apache/incubator-mxnet/pull/18261#issuecomment-631019830 We don't trigger it nightly for 1.7.x branch It's only triggered for master Coz otherwise it would keep piling [for eg we have previous release branches like

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

2020-05-19 Thread aaronmarkham
This is an automated email from the ASF dual-hosted git repository. aaronmarkham 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 b9ec04a Bump the publis

[GitHub] [incubator-mxnet] fhieber commented on issue #17671: mxnet=1.6.0 for OSX on pypi does not work

2020-05-19 Thread GitBox
fhieber commented on issue #17671: URL: https://github.com/apache/incubator-mxnet/issues/17671#issuecomment-631009235 Yes, this issue is resolved for me, thank you. This is an automated message from the Apache Git Service. T

[GitHub] [incubator-mxnet-ci] marcoabreu commented on a change in pull request #25: Serverless implementation for jenkins pipeline monitor lambda

2020-05-19 Thread GitBox
marcoabreu commented on a change in pull request #25: URL: https://github.com/apache/incubator-mxnet-ci/pull/25#discussion_r427519796 ## File path: services/jenkins-pipeline-monitor/handler.py ## @@ -0,0 +1,134 @@ +import os +import boto3 +import json +import logging +import se

[GitHub] [incubator-mxnet] mfiore opened a new issue #13945: dataloader crashes with threads and slow downs with processes

2020-05-19 Thread GitBox
mfiore opened a new issue #13945: URL: https://github.com/apache/incubator-mxnet/issues/13945 ## Description (sorry, long issue, should it be split in two for multiprocess and threads? I posted them together since I thought they might be related since part of the code is shared)

[GitHub] [incubator-mxnet] zhreshold commented on issue #13945: dataloader crashes with threads and slow downs with processes

2020-05-19 Thread GitBox
zhreshold commented on issue #13945: URL: https://github.com/apache/incubator-mxnet/issues/13945#issuecomment-630999520 @mathephysicist The multiprocessing access to same recordio file is fixed already in master. I created another PR for fixing the multithreading case: https://github.

[GitHub] [incubator-mxnet] zhreshold opened a new pull request #18366: [RecordIO] switch fid in multithreading

2020-05-19 Thread GitBox
zhreshold opened a new pull request #18366: URL: https://github.com/apache/incubator-mxnet/pull/18366 ## Description ## Fix multithreading access to single RecordIO file. The ref issue: https://github.com/apache/incubator-mxnet/issues/13945 ## Checklist ## ### Essentials ###

[GitHub] [incubator-mxnet] mxnet-bot commented on pull request #18366: [RecordIO] switch fid in multithreading

2020-05-19 Thread GitBox
mxnet-bot commented on pull request #18366: URL: https://github.com/apache/incubator-mxnet/pull/18366#issuecomment-630998920 Hey @zhreshold , Thanks for submitting the PR All tests are already queued to run once. If tests fail, you can trigger one or more tests again with the following

[GitHub] [incubator-mxnet] cbalint13 commented on pull request #18365: Introduce MXNET_BUILD_STATIC=OFF

2020-05-19 Thread GitBox
cbalint13 commented on pull request #18365: URL: https://github.com/apache/incubator-mxnet/pull/18365#issuecomment-630994608 @leezu , UPDATE: Followed your proposal, updated the code. * The way CI fails is beyond of this PR cause (noticed others fail too, i.e cuda.h not found)

[GitHub] [incubator-mxnet] yzhliu commented on issue #16743: [Numpy] Cannot mix numpy scalar and MXNet numpy ndarray

2020-05-19 Thread GitBox
yzhliu commented on issue #16743: URL: https://github.com/apache/incubator-mxnet/issues/16743#issuecomment-630969118 closed by #18313 This is an automated message from the Apache Git Service. To respond to the message, plea

[GitHub] [incubator-mxnet] yzhliu closed issue #16743: [Numpy] Cannot mix numpy scalar and MXNet numpy ndarray

2020-05-19 Thread GitBox
yzhliu closed issue #16743: URL: https://github.com/apache/incubator-mxnet/issues/16743 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go

[GitHub] [incubator-mxnet] cbalint13 edited a comment on pull request #18365: Add optional MXNET_BUILD_SHARED

2020-05-19 Thread GitBox
cbalint13 edited a comment on pull request #18365: URL: https://github.com/apache/incubator-mxnet/pull/18365#issuecomment-630953349 @leezu , Let's try, will see how will pass CI. This is an automated message from t

[GitHub] [incubator-mxnet] cbalint13 commented on pull request #18365: Add optional MXNET_BUILD_SHARED

2020-05-19 Thread GitBox
cbalint13 commented on pull request #18365: URL: https://github.com/apache/incubator-mxnet/pull/18365#issuecomment-630953349 @leezu , Let's try, see how will pass CI. This is an automated message from the Apache Gi

[GitHub] [incubator-mxnet] ChaiBapchya commented on issue #17671: mxnet=1.6.0 for OSX on pypi does not work

2020-05-19 Thread GitBox
ChaiBapchya commented on issue #17671: URL: https://github.com/apache/incubator-mxnet/issues/17671#issuecomment-630941157 @fhieber has the issue been resolved? @leezu since the pypi has been made available can we close it? --

[GitHub] [incubator-mxnet] ys2843 closed issue #18234: [Website] Global Search Feature

2020-05-19 Thread GitBox
ys2843 closed issue #18234: URL: https://github.com/apache/incubator-mxnet/issues/18234 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go

[incubator-mxnet] branch master updated: Website global search feature (#18288)

2020-05-19 Thread aaronmarkham
This is an automated email from the ASF dual-hosted git repository. aaronmarkham 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 14c24a5 Website global search fe

[GitHub] [incubator-mxnet] aaronmarkham merged pull request #18288: Website global search feature

2020-05-19 Thread GitBox
aaronmarkham merged pull request #18288: URL: https://github.com/apache/incubator-mxnet/pull/18288 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL

[incubator-mxnet] branch master updated (b214477 -> 5dfbaa6)

2020-05-19 Thread lausen
This is an automated email from the ASF dual-hosted git repository. lausen pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git. from b214477 fix (#18313) add 5dfbaa6 Fix MXNet not supporting coredumps (#18315) No new revisions were a

  1   2   >