Skip to content

Commit

Permalink
allow compression exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Baunsgaard committed Feb 4, 2025
1 parent e6b8ef0 commit 4928480
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
import org.apache.sysds.runtime.compress.CompressedMatrixBlock;
import org.apache.sysds.runtime.compress.CompressionSettings;
import org.apache.sysds.runtime.compress.CompressionSettingsBuilder;
import org.apache.sysds.runtime.compress.DMLCompressionException;
import org.apache.sysds.runtime.compress.colgroup.AColGroup;
import org.apache.sysds.runtime.compress.colgroup.AColGroup.CompressionType;
import org.apache.sysds.runtime.compress.colgroup.ColGroupFactory;
Expand Down Expand Up @@ -102,7 +103,7 @@ public void combine() {

TestUtils.compareMatricesBitAvgDistance(mb, ref, 0, 0, errMessage);
}
catch(NotImplementedException e) {
catch(NotImplementedException | DMLCompressionException e) {
// allowed
}
catch(Exception e) {
Expand Down

0 comments on commit 4928480

Please sign in to comment.