Class BinaryM

java.lang.Object
org.apache.sysds.lops.Lop
org.apache.sysds.lops.BinaryM

public class BinaryM extends Lop
Lop to perform binary operation. Both inputs must be matrices or vectors. Example - A = B + C, where B and C are matrices or vectors.
  • Constructor Details

    • BinaryM

      public BinaryM(Lop input1, Lop input2, Types.OpOp2 op, Types.DataType dt, Types.ValueType vt, Types.ExecType et, boolean colVector)
      Constructor to perform a binary operation.
      Parameters:
      input1 - low-level operator 1
      input2 - low-level operator 2
      op - operation type
      dt - data type
      vt - value type
      et - exec type
      colVector - true if colVector
  • Method Details

    • toString

      public String toString()
      Description copied from class: Lop
      Method to have Lops print their state. This is for debugging purposes.
      Specified by:
      toString in class Lop
    • getBroadcastInput

      public Lop getBroadcastInput()
      Description copied from class: Lop
      Method to get the input to be broadcast. This method is overridden by the Lops which require broadcasts (e.g. AppendM)
      Overrides:
      getBroadcastInput in class Lop
      Returns:
      An input Lop or Null
    • getOperationType

      public Types.OpOp2 getOperationType()
    • getOpcode

      public static String getOpcode(Types.OpOp2 op)
    • isOpcode

      public static boolean isOpcode(String opcode)
    • getInstructions

      public String getInstructions(String input1, String input2, String output)
      Description copied from class: Lop
      Method should be overridden if needed
      Overrides:
      getInstructions in class Lop
      Parameters:
      input1 - input 1
      input2 - input 2
      output - output
      Returns:
      instructions as string