Re: [Proposal] Stabilizing Apache MXNet CI build system

2017-11-06 Thread Chris Olivier
After a decision is reached, i am willing to add tasks to Apache MXNet JIRA On Mon, Nov 6, 2017 at 6:15 AM, Pedro Larroy wrote: > Thanks for setting up the document guys, looks like a solid basis to > start to work on! > > Marco, Kellen and I have already added

Re: mxnet ndarray inference in js

2017-11-06 Thread TongKe Xue
Hi Hagay, Good point. The high level problem is: I want to run mxnet training on GPU, and inference on CPU -- browsers / javascript in particular. On the training side, I'm dealing mostly with NDArray / doing my own gradient calculations / optimization. I would like some library for the

[jira] [Updated] (MXNET-1) EPIC: Create independent Jenkins Server for MXNet CI

2017-11-06 Thread Suneel Marthi (JIRA)
[ https://issues.apache.org/jira/browse/MXNET-1?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Suneel Marthi updated MXNET-1: -- Component/s: CI Build > EPIC: Create independent Jenkins Server for MXNet CI >

Re: mxnet ndarray inference in js

2017-11-06 Thread Lupesko, Hagay
TongKe, What’s the use case you are after? Answering this question may help us help you ( Hagay On 11/2/17, 12:10, "TongKe Xue" wrote: Hi, I'm looking for a js library compatible with mxnet/ndarray. 1. I am aware of https://github.com/dmlc/mxnet.js/

Re: what is NDArrayFuncReturn ?

2017-11-06 Thread YiZhi Liu
This is a internal class for wrapping NDArray(s) returned by function calls. It handles functions that return more than one array, and tracks the array dependencies. You can call get() or apply() to get NDArray 2017-11-05 11:55 GMT+08:00 TongKe Xue : > Hi, > > 1. I'm running

Re: Running tests in parallel

2017-11-06 Thread Chris Olivier
That’d be great. On Mon, Nov 6, 2017 at 7:04 AM kellen sunderland < kellen.sunderl...@gmail.com> wrote: > Yeah I think the issue is related to a few test fixtures setup / teardown. > When I have some more time I'll try and narrow down what's wrong with > specific tests. There may be some tests

Re: Running tests in parallel

2017-11-06 Thread kellen sunderland
Yeah I think the issue is related to a few test fixtures setup / teardown. When I have some more time I'll try and narrow down what's wrong with specific tests. There may be some tests that are / aren't reentrant. Some tests work well, for example python3 -m nose --verbose --processes 2

Re: Running tests in parallel

2017-11-06 Thread Chris Olivier
I’ve never tried that but it certainly seems like it would help CI speeds, especially since we don’t always use 100% CPU and almost never 100% GPU for tests On Mon, Nov 6, 2017 at 6:43 AM kellen sunderland < kellen.sunderl...@gmail.com> wrote: > Hey all, > > Just wanted to ask before I dive too