Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/main/java/org/apache/sysds/parser/DMLTranslator.java
Original file line number Diff line number Diff line change
Expand Up @@ -1058,6 +1058,7 @@ public void constructHops(StatementBlock sb) {
case LIBSVM:
case HDF5:
case DELTA:
case PARQUET:
// columnar/text formats: no block layout (blocksize -1)
ae.setOutputParams(ae.getDim1(), ae.getDim2(), ae.getNnz(), ae.getUpdateType(), -1);
break;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ public static FrameReader createFrameReader(FileFormat fmt, FileFormatProperties
case PROTO:
// TODO performance improvement: add parallel reader
return new FrameReaderProto();
case PARQUET:
return binaryParallel ? new FrameReaderParquetParallel() : new FrameReaderParquet();
case DELTA:
return textParallel ? new FrameReaderDeltaParallel() : new FrameReaderDelta();
default:
Expand Down
Loading