Skip to content
Open
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ else if( input1.getDataType().isMatrix() || input1.getDataType().isFrame() ) {
}
UnarySketchOperator op = (UnarySketchOperator) _optr;

MatrixBlock res = LibMatrixSketch.getUniqueValues(input, op.getDirection());
MatrixBlock res = LibMatrixSketch.getUniqueValues(input, op.getDirection(), op.getNumThreads());
ec.releaseMatrixInput(input1.getName());
ec.setMatrixOutput(outputName, res);
break;
Expand Down
Loading