>> How to build systemml on windows, as there is a backslash problem.
Simplest option: Compile SystemML from command-line (assuming you have installed maven: https://maven.apache.org/install.html) cd <systemml directory> mvn package OR mvn package -P distribution This will help separate compilation and IDE issues. Can you please elaborate on "the backslash problem" ? >> When build systemml on intellij idea, it has the compilation error with caffe2dml class. Also, please note that Caffe2DML is a scala class. You may want to check following two issues: 1. I have personally not tested the IntelliJ's scala integration, but as per Dylan's email, it works fine for him. As per our pom, we recommend Scala 2.11. 2. Java version issue pointed in the Berthold's email. As an FYI, I have not reproduced this issue on my Scala IDE setup (http://scala-ide.org/). If we are missing any step, we may want to update our IDE guide: http://apache.github.io/systemml/developer-tools-systemml#import-systemml-project-to-intellij Thanks, Niketan Pansare IBM Almaden Research Center E-mail: npansar At us.ibm.com http://researcher.watson.ibm.com/researcher/view.php?person=us-npansar From: "Berthold Reinwald" <[email protected]> To: [email protected] Date: 12/04/2017 01:00 PM Subject: Re: dev environment on windows Please make sure that you specify a JRE/JDK of 1.8 when you use a maven run configuration. If I switch the runtime JRE in my maven configuration back to jdk1.7, then I observe the same caffe2dml compilation error. caffe2dml randomly seems to be the 1st class being compiled to throw the error. Regards, Berthold Reinwald IBM Almaden Research Center office: (408) 927 2208; T/L: 457 2208 e-mail: [email protected] From: Dylan Hutchison <[email protected]> To: [email protected] Date: 12/02/2017 01:19 PM Subject: Re: dev environment on windows I have used Intellij on windows and had no problems. Did you open a new project from SystemML's pom.xml? If so, it should automatically configure itself to match the pom. Then you can use the "Maven projects" tab on the right side of Intellij to run "mvn package". On Sat, Dec 2, 2017 at 1:13 PM, Matthias Boehm <[email protected]> wrote: > I'm using eclipse on win and simply defined two maven run configurations > for > > (1) the default build (base=${workspace_loc:/systemml}, goals=package), > and > (2) the distribution build ((base=${workspace_loc:/systemml}, > goals=package, profiles=distribution). > > I'm sure intellij provides a similar builtin maven support, but maybe an > intellij user can comment on that as well. > > Regards, > Matthias > > > On Sat, Dec 2, 2017 at 10:08 AM, Janardhan Pulivarthi < > [email protected]> wrote: > > > Hi all, > > > > 1. How to build systemml on windows, as there is a backslash problem. > > > > 2. When build systemml on intellij idea, it has the compilation error > with > > caffe2dml class. > > > > > > Thanks. > > >
