use of org.apache.sysml.lops.PMapMult in project incubator-systemml by apache.
the class AggBinaryOp method constructSparkLopsPMapMM.
private void constructSparkLopsPMapMM() throws LopsException, HopsException {
PMapMult pmapmult = new PMapMult(getInput().get(0).constructLops(), getInput().get(1).constructLops(), getDataType(), getValueType());
setOutputDimensions(pmapmult);
setLineNumbers(pmapmult);
setLops(pmapmult);
}
Aggregations