This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

MIPS Calculation on ARMv7

Hi All,

I want to measure MIPS(Million Instruction per second, i.e. instruction count per second) on ARMv7 Platforms. What is the procedure for calculating MIPS for ARMv7 platforms?

Thanks and Regards

Sridhar Artham

Parents
  • Hi,

    if you would like to know the MIPS, you can know it by observing how many NOP (or instruction which you like) instructions can be executed with one second.

    However, does it have any meaning?

    In a scalar CPU case, it would take 1 MIPS when running at 1MHz.

    In a 2 way superscalar CPU case, it would take 2 MIPS when running at 1MHz.

    I recommend you will use Dhrystone MIPS.

    Dhrystone benchmark shows how many the Dhrystone loops can be executed per second. Dhrystone MIPS can be gotten by dividing the Dhrystone number by 1757.

    Best regards,

    Yasuhiko Koumoto.

Reply
  • Hi,

    if you would like to know the MIPS, you can know it by observing how many NOP (or instruction which you like) instructions can be executed with one second.

    However, does it have any meaning?

    In a scalar CPU case, it would take 1 MIPS when running at 1MHz.

    In a 2 way superscalar CPU case, it would take 2 MIPS when running at 1MHz.

    I recommend you will use Dhrystone MIPS.

    Dhrystone benchmark shows how many the Dhrystone loops can be executed per second. Dhrystone MIPS can be gotten by dividing the Dhrystone number by 1757.

    Best regards,

    Yasuhiko Koumoto.

Children