j143 commented on PR #2002:
URL: https://github.com/apache/systemds/pull/2002#issuecomment-1962974576

   Comments from @Baunsgaard , there seem to be an issue with logging when the 
`SYSTEMDS_ROOT` is not set.
   
   ```log
   Me:~/Downloads/systemds-3.2.0-bin$ cat test.dml
   
   
   x = rand(rows = 1000, cols = 10, min = -10, max = 10)
   
   x = ceil(x)
   
   y = rand(rows = 1000, cols = 1, min = 0, max = 1)
   
   y = round(y)
   
   
   bias = lm(X=x, y=y)
   
   print(sum(bias))
   
   Me:~/Downloads/systemds-3.2.0-bin$ ./bin/systemds test.dml 
   Calling the Direct Solver...
   0.08330675008391338
   SystemDS Statistics:
   Total execution time:                0.053 sec.
   
   
   Me:~/Downloads/systemds-3.2.0-bin$ unset SYSTEMDS_ROOT 
   Me:~/Downloads/systemds-3.2.0-bin$ ./bin/systemds test.dml 
   ERROR StatusLogger Reconfiguration failed: No configuration found for 
'55054057' at 'null' in 'null'
   Calling the Direct Solver...
   0.06721639156713015
   SystemDS Statistics:
   Total execution time:        
   ```


-- 
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 to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@systemds.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to