Skip to content

Commit cb82fbd

Browse files
committed
move the comments to more appropriate locations
1 parent c3d88a4 commit cb82fbd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/apache/sysds/runtime/compress/lib/CLALibReorg.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ else if(op.fn instanceof SwapIndex) {
6161
if(cmb.getCachedDecompressed() != null)
6262
return cmb.getCachedDecompressed().reorgOperations(op, ret, startRow, startColumn, length);
6363

64+
// Allow transpose to be compressed output. In general we need to have a transposed flag on
65+
// the compressed matrix. https://issues.apache.org/jira/browse/SYSTEMDS-3025
6466
return transpose(cmb, ret, op.getNumThreads());
6567
}
6668
else {
67-
// Allow transpose to be compressed output. In general we need to have a transposed flag on
68-
// the compressed matrix. https://issues.apache.org/jira/browse/SYSTEMDS-3025
6969
String message = !warned ? op.getClass().getSimpleName() + " -- " + op.fn.getClass().getSimpleName() : null;
7070
MatrixBlock tmp = cmb.getUncompressed(message, op.getNumThreads());
7171
warned = true;

0 commit comments

Comments
 (0)