Search in sources :

Example 1 with PMapMult

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);
}
Also used : PMapMult(org.apache.sysml.lops.PMapMult)

Aggregations

PMapMult (org.apache.sysml.lops.PMapMult)1