Skip to content

Latest commit

 

History

History
9 lines (9 loc) · 549 Bytes

metrics.md

File metadata and controls

9 lines (9 loc) · 549 Bytes

Metrics:

  • PROG SIZE: the number of instructions in the program;
  • EXEC TIME: the execution time of the program, in milliseconds;
  • EXEC MOVE: the number of times the execution pointer was moved to execute this program;
  • DATA MOVE: the number of time the data pointer was moved to execute this program;
  • DATA WRITE: the number of time the memory was accessed to change its contents (i.e., INCR, DECR & IN) while executing this program;
  • DATA READ: the number of times the memory was accessed to read its contents (i.e., JUMP, BACK, OUT)