Re: Java Code Style Template

2017-06-15 Thread Nakul Jindal
1) +1 2) -1 --- i agree with Mike, also it seems like there is more setup needed in various editors to preserve trailing whitespace than to get rid of it. 3) Soft -1 --- We can try to remain consistent with the java spec. Since Point 1 (switch indentation) is followed from the java spec, maybe we

Re: Java Code Style Template

2017-06-15 Thread dusenberrymw
Thanks for bringing this up, Matthias. Here are my thoughts on those items: 1) +1 2) -1 -- I would prefer no extraneous whitespace at the end of any lines. 3) I don't have a strong opinion here. I would suggest also including thoughts on the positioning of curly braces, i.e. on the same line

Re: Rework inter-procedural analysis

2017-06-15 Thread Deron Eriksson
Documentation is an essential part of the software development process, especially when working on a complex system in a collaborative environment where we want to encourage community growth. On Wed, Jun 14, 2017 at 10:11 PM, Nakul Jindal wrote: > Thank you Matthias for

Re: Unexpected Executor Crash

2017-06-15 Thread Glenn Weidner
Hi Anthony, Could you retry your scenario without the '-exec spark' option? By default, SystemML will run in hybrid_spark mode which is more efficient. Thanks, Glenn From: Anthony Thomas To: dev@systemml.apache.org Date: 06/15/2017 09:50 AM Subject:

Unexpected Executor Crash

2017-06-15 Thread Anthony Thomas
Hi SystemML Developers, I'm running the following simple DML script under SystemML 0.14: M = read('/scratch/M5.csv') N = read('/scratch/M5.csv') MN = M %*% N if (1 == 1) { print(as.scalar(MN[1,1])) } The matrix M is square and about 5GB on disk (stored in HDFS). I am submitting the script