slnkahveci commented on PR #1883:
URL: https://github.com/apache/systemds/pull/1883#issuecomment-1712486572
@Baunsgaard
> > 153 153 21112
> And this is with the current?
It was the output from 256x256 input.
DML script functions as you’ve described. The issue is with the test. It
doesn’t behave the same way as the R script. There is a mismatch in the
rotation of the output matrix.
Input A.mtx:
```
%%MatrixMarket matrix coordinate real general
512 256 131072
1 1 191.03824879907646
1 2 228.8056713992367
1 3 89.73826829980825
```
Output expected/B from R:
```
%%MatrixMarket matrix coordinate real general
153 307 42252
1 1 28.420986211683942
2 1 153.74324014564436
3 1 41.8703704404483
```
out/B.mtd from .dml:
```
…
"rows": 307,
"cols": 153,
…
```
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]