Hi all,
I did some of the investigation based on comparison of FPU based algorithms on CM4 and CM7 cores. All the code/data were placed into the single cycle memory with full utilization of modified / true Harvard architecture, it means:
- on CM4 - code in SRAM accesible via CODE bus, data in SRAM accesible via SYSTEM bus with fully utilized modified Harvard architecture
- on CM7 - code in I-TCM memory, data in DTCM memory
Most of the code (instructions) are floating point (99%), it means thay are not interleaved with integer instructions (well this is most probably caused by compiler - to be honest I have check the assembly for both codes CM4 / CM7 and they looked the same). The code mostly contains general math calculations mul, mac, sqrt, div + load / store, all in floating point. The result I am getting are confusing me. Cortex M4 shows even better results that Cortex M7.
Questions:
- are the differencies caused by cores pipelines? not sure how "dynamic branch prediction" works, if it is really posible to get branch in single cycle or it is required to flush whole pipeline (6 cycles) in a case of floating point pipeline on CM7
- what are the best practices in coding to get the best from CM7 over CM4 in floating point meaning? (not sure if the compilers are now in best condition regarding to CM7)
thanks in advance.
regards
Rastislav
Hello Rastislav,
I have gotten the STM32F7 Discovery board and now I can cross-check your results.
Can you provide the codes of which performance were less than Cortex-M7?
For a trial, I measured the 4x4 matrix multiply performance of the floating point by SysTick.
The results are
Cortex-M7: 303 cpu cycles and
Cortex-M4: 452 cpu cycles.
According to my trial, Cortex-M7 is 1.5 times better performance than Cortex-M4.
Best regards,
Yasuhiko Koumoto.
Hi Yasuhiko san,
Very much appropriate your help with. I am on vacation nowadays with limited access to the evaluation. However, after vacation I will try also your test (higher level of matrix). Thanks.
Regards
Od: yasuhikokoumoto
Odoslané: Sunday, July 26, 2015 23:17
Komu: Pavlanin Rastislav-B34185
Predmet: Re: - What is the advantage of floating point of CM7 versus CM4
<http://community.arm.com/?et=watches.email.thread>
What is the advantage of floating point of CM7 versus CM4
reply from yasuhikokoumoto<http://community.arm.com/people/yasuhikokoumoto?et=watches.email.thread> in ARM Processors - View the full discussion<http://community.arm.com/message/29627?et=watches.email.thread#29627>
I also measured performance of Linpack and Whetstone benchmarks.
Linpack: 1.62 times faster by Cortex-M7 at the same clock.
Whetsone: 1.91 times faster by Cortex-M7 at the same clock.
Hello,
I tried to reply earlier, but I think I accidentally closed the window
.... or maybe you will see 2 replies.
These results are broadly what we would expect.
Linpack, whetstone and matrix multiply are all long enough and varied enough code to benefit from Cortex-M7's microarchitecture.
The short instruction sequence to approximate cos will execute roughly the same on Cortex-M4 and Cortex-M7 - you gain a little from dual issue of the loads, but then lose a little from dependencies between the FP arithmetic instructions.
You may get slightly different results using the ARM compiler, but there is not much chance for the compiler to avoid the dependencies in such a short sequence.
Ian
I'm not ignoring you but we have the ARM Partner's meeting in Cambridge this week.
I'll talk to our engineering team and get back to you.
Hello Ian,
what is your opinion about the issue?
View all questions in Cortex-M / M-Profile forum