Skip to content

Commit cf17891

Browse files
committed
fix compile error
1 parent 375c7a8 commit cf17891

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/org/apache/sysds/runtime/instructions/cp/CtableCPInstruction.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@
1919

2020
package org.apache.sysds.runtime.instructions.cp;
2121

22-
import org.apache.sysds.lops.Ctable;
2322
import org.apache.commons.lang3.tuple.Pair;
2423
import org.apache.sysds.common.Types.DataType;
2524
import org.apache.sysds.common.Types.ValueType;
25+
import org.apache.sysds.lops.Ctable;
2626
import org.apache.sysds.runtime.DMLRuntimeException;
2727
import org.apache.sysds.runtime.controlprogram.context.ExecutionContext;
2828
import org.apache.sysds.runtime.instructions.Instruction;
2929
import org.apache.sysds.runtime.instructions.InstructionUtils;
3030
import org.apache.sysds.runtime.lineage.LineageItem;
3131
import org.apache.sysds.runtime.lineage.LineageItemUtils;
3232
import org.apache.sysds.runtime.matrix.data.CTableMap;
33-
import org.apache.sysds.runtime.matrix.data.LibMatrixTable;
33+
import org.apache.sysds.runtime.matrix.data.LibMatrixReorg;
3434
import org.apache.sysds.runtime.matrix.data.MatrixBlock;
3535
import org.apache.sysds.runtime.util.DataConverter;
3636
import org.apache.sysds.runtime.util.LongLongDoubleHashMap.EntryType;
@@ -135,7 +135,7 @@ public void processInstruction(ExecutionContext ec) {
135135
else
136136
seqLength = (int) input1.getLiteral().getLongValue();
137137
// only resultBlock.rlen known, resultBlock.clen set in operation
138-
resultBlock = LibMatrixTable.tableSeqOperations(seqLength, matBlock2, cst1, resultBlock, true);
138+
resultBlock = LibMatrixReorg.fusedSeqRexpand(seqLength, matBlock2, cst1, resultBlock, true);
139139
break;
140140
case CTABLE_TRANSFORM_HISTOGRAM: //(VECTOR)
141141
// F=ctable(A,1) or F = ctable(A,1,1)

0 commit comments

Comments
 (0)