Class Instruction

java.lang.Object
org.apache.sysds.runtime.instructions.Instruction
Direct Known Subclasses:
CPInstruction, FEDInstruction, GPUInstruction, OOCInstruction, SPInstruction

public abstract class Instruction extends Object
  • Field Details

  • Method Details

    • getFilename

      public String getFilename()
    • getBeginLine

      public int getBeginLine()
    • getEndLine

      public int getEndLine()
    • getBeginColumn

      public int getBeginColumn()
    • getEndColumn

      public int getEndColumn()
    • getType

      public abstract Instruction.IType getType()
    • setLocation

      public void setLocation(String filename, int beginLine, int endLine, int beginCol, int endCol)
    • setLocation

      public void setLocation(Lop lop)
    • setLocation

      public void setLocation(DataIdentifier id)
    • setLocation

      public void setLocation(Instruction oldInst)
    • getOperator

      public Operator getOperator()
    • getLineNum

      public int getLineNum()
      Getter for instruction line number
      Returns:
      lineNum Instruction approximate DML script line number
    • setInstID

      public void setInstID(long id)
      Setter for instruction unique identifier
      Parameters:
      id - Instruction unique identifier
    • getInstID

      public long getInstID()
      Getter for instruction unique identifier
      Returns:
      instID Instruction unique identifier
    • printMe

      public void printMe()
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • getInstructionString

      public String getInstructionString()
    • getGraphString

      public String getGraphString()
    • getOpcode

      public String getOpcode()
    • getExtendedOpcode

      public String getExtendedOpcode()
    • requiresLabelUpdate

      public boolean requiresLabelUpdate()
    • updateInstructionThreadID

      public void updateInstructionThreadID(String pattern, String replace)
      All instructions that have thread-specific filenames or names encoded in it should overwrite this method in order to update (1) the in-memory instruction and (2) the instruction string
      Parameters:
      pattern - ?
      replace - ?
    • preprocessInstruction

      public Instruction preprocessInstruction(ExecutionContext ec)
      This method should be used for any setup before executing this instruction. Overwriting methods should first call the super method and subsequently do their custom setup.
      Parameters:
      ec - execution context
      Returns:
      instruction
    • processInstruction

      public abstract void processInstruction(ExecutionContext ec)
      This method should be used to execute the instruction.
      Parameters:
      ec - execution context
    • postprocessInstruction

      public void postprocessInstruction(ExecutionContext ec)
      This method should be used for any tear down after executing this instruction. Overwriting methods should first do their custom tear down and subsequently call the super method.
      Parameters:
      ec - execution context