Skip to content

Commit 44aba46

Browse files
committed
pass only the opcode for profiling
Heavy hitter instructions: # Instruction Time(s) Count 1 ooc_rblk 0.055 1 2 toString 0.049 2 3 print 0.016 2 4 createvar 0.013 3 5 ooc_ceil 0.001 1 6 rmvar 0.000 3
1 parent 9789243 commit 44aba46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/apache/sysds/runtime/instructions/ooc/UnaryOOCInstruction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public static UnaryOOCInstruction parseInstruction(String str) {
3535
System.out.println("Here at UnaryOOCInstruction parseInstruction");
3636

3737
UnaryOperator uopcode = InstructionUtils.parseUnaryOperator(opcode);
38-
return new UnaryOOCInstruction(OOCType.Unary, uopcode, in1, out, str, str);
38+
return new UnaryOOCInstruction(OOCType.Unary, uopcode, in1, out, opcode, str);
3939
}
4040

4141
public void processInstruction( ExecutionContext ec ) {

0 commit comments

Comments
 (0)