ReneEnjilian commented on PR #2240: URL: https://github.com/apache/systemds/pull/2240#issuecomment-2692707462
I implemented a fix and hope that this resolves the issue now. The error does not occur on my machine but from what I can see is that R struggled with the class type of the result matrix. Changing `outer(v, 1:m, "==")` to `outer(as.vector(v), 1:m, "==")` should resolve the error because R is now recognized as type matrix and not only as type array anymore. -- 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