Re: SystemML Notebook docker image

2016-02-12 Thread Sourav Mazumder
Hi Deron, I created a Pull request (#69) for the same. But I'm little lost how do I add a new folder and within that the json file for the notebook I want to upload. I tried creating a new folder under incubator-systemml /samples

Re: SystemML Notebook docker image

2016-02-12 Thread Luciano Resende
You need to git add the folder you are trying to submit as a PR Something like the steps below cd samples/zeppelin-notebooks mkdir foo cp foo.json foo git add foo -> this will add the folder and it's contents git commit -a -m"Some message" git push origin branch-name On Fri, Feb 12, 2016 at 9

Re: SystemML Notebook docker image

2016-02-12 Thread Deron Eriksson
Hi Sourav, I recently created a "Contributing to SystemML" document that describes working with Git ( http://apache.github.io/incubator-systemml/contributing-to-systemml.html#systemml-on-github). The workflow described in the document may help you out. Also, in case it helps, I found the open-sou

Turn off parallelism in parfor?

2016-02-12 Thread Deron Eriksson
Hi, Is it possible to turn off parallelism in a parfor loop using a function parameter? I tried setting 'par' to 1. If I print i in a for loop, the results come back in order: for (i in 1:5) { print(i) } gives 1 2 3 4 5 If I print i in a parfor loop (with par=1), the res

Re: Turn off parallelism in parfor?

2016-02-12 Thread Matthias Boehm
yes, this is because the parfor optimizer overwrites this specification. You could use either one of the following 1) "parfor(opt=NONE, par=1)" (disables optimization, uses defaults, and overwrites the specified parameters) 2) "parfor(opt=CONSTRAINED, par=1)" (optimizes as usual under the constrai