We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c85913 commit 914f9e9Copy full SHA for 914f9e9
src/main/java/org/apache/sysds/runtime/compress/lib/CLALibReshape.java
@@ -161,7 +161,7 @@ private void checkValidity() {
161
162
private boolean shouldItBeCompressedOutputs() {
163
// The number of rows in the reshaped allocations is fairly large.
164
- return rlen > COMPRESSED_RESHAPE_THRESHOLD &&
+ return rlen > COMPRESSED_RESHAPE_THRESHOLD && rowwise &&
165
// the reshape is a clean multiplier of number of rows, meaning each column group cleanly reshape into x others
166
(double) rlen / rows % 1.0 == 0.0;
167
}
0 commit comments