본문 바로가기

ESPRESSIF/ESP32

ESP32 - Dhrystone, Whetstone, IIR Benchmark 성능 테스트

MCU 성능 측정을 할수 있는 벤치마크 방법은 여러가지가 있지만 Dhrystone, Whetstone 방식을 많이 사용한다.

각각의 특징은 아래와 같다.

  • Dhrystone - 정수(ALU)연산성능 측정,  MIPS 수치로 표기
  • Whetstone - 부동소수점(FPU)연산성능 측정, MFLOPS 수치로 표기

테스트 코드는   STM32H MCU Dhrystone, Whetstone, IIR Benchmark 성능 테스트 를 이용하였다.

 

 

mode = ESP32
Dhrystone Benchmark, Version 2.1 (Language: C)
---------------------------------------------------
Execution starts, 2000000 runs through Dhrystone
Execution ends : 8.293 Seconds
Microseconds for one run through Dhrystone: 4.15
Dhrystones per Second: 241165.94
VAX MIPS rating = 137.26 DMIPS


Whetstone Benchmark, Version 1.2 (Language: C)
---------------------------------------------------
Loops: 1000, Iterations: 1, Duration: 787 ms.
C Converted Single Precision Whetstones: 127.06 MIPS


4th order float IIR speed benchmark
---------------------------------------------------
total number of samples: 15000  duration [us]: 3  ==> speed [kiloSamples/second] : 5000.00

 

반응형