We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0369058 commit 50b6cc8Copy full SHA for 50b6cc8
src/main/java/org/apache/sysds/runtime/instructions/gpu/SpoofCUDAInstruction.java
@@ -38,6 +38,7 @@
38
import org.apache.sysds.runtime.lineage.LineageItem;
39
import org.apache.sysds.runtime.lineage.LineageItemUtils;
40
import org.apache.sysds.runtime.lineage.LineageTraceable;
41
+import org.apache.sysds.utils.GPUStatistics;
42
43
import java.util.ArrayList;
44
@@ -116,6 +117,7 @@ public static SpoofCUDAInstruction parseInstruction(String str) {
116
117
118
@Override
119
public void processInstruction(ExecutionContext ec) {
120
+ GPUStatistics.incrementNoOfExecutedGPUInst();
121
122
//get input matrices and scalars, incl pinning of matrices
123
ArrayList<MatrixObject> inputs = new ArrayList<>();
0 commit comments