Skip to content

Commit bc2993e

Browse files
committed
[MINOR] Merge InstructionType Tsmm and TSMM
Closes #2263
1 parent c484d92 commit bc2993e

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

src/main/java/org/apache/sysds/common/InstructionType.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,4 @@ public enum InstructionType {
8888
MatrixReshape,
8989
Write,
9090
Init,
91-
92-
//FED
93-
Tsmm;
9491
}

src/main/java/org/apache/sysds/common/Opcodes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ public enum Opcodes {
278278
RIGHT_INDEX(RightIndex.OPCODE, InstructionType.MatrixIndexing),
279279
LEFT_INDEX(LeftIndex.OPCODE, InstructionType.MatrixIndexing),
280280

281-
TSMM("tsmm", InstructionType.MMTSJ, InstructionType.TSMM, InstructionType.Tsmm),
281+
TSMM("tsmm", InstructionType.MMTSJ, InstructionType.TSMM),
282282
PMM("pmm", InstructionType.PMMJ, InstructionType.PMM),
283283
MMCHAIN("mmchain", InstructionType.MMChain),
284284

src/main/java/org/apache/sysds/runtime/instructions/FEDInstructionParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public static FEDInstruction parseSingleInstruction ( InstructionType fedtype, S
6262
return AggregateBinaryFEDInstruction.parseInstruction(str);
6363
case AggregateUnary:
6464
return AggregateUnaryFEDInstruction.parseInstruction(str);
65-
case Tsmm:
65+
case TSMM:
6666
return TsmmFEDInstruction.parseInstruction(str);
6767
case Binary:
6868
return BinaryFEDInstruction.parseInstruction(str);

0 commit comments

Comments
 (0)