STM32U5 SIMD usage (or any other trick to speedup math)
Hello,In my application i need to run double for loop for data inside SRAM. and I would love to speed up my program as much as possible.uint32_t xs = 0, yx = 0, sum =0, i = 0;for(uint32_t x = 0 ; x<600 ; x++){ for(uint32_t y = 0 ; y<600 ; y++) ...