当前位置:网站首页>Use arm neon operation to improve memory copy speed
Use arm neon operation to improve memory copy speed
2022-07-05 08:47:00 【hankfu】
stay arm CPU On , Use arm Neon operation , Can improve memory copy speed .
First include Neon The header file arm_neon.h.
#include <arm_neon.h>Reuse Neon operation .
p_u8x16_buffer = (volatile uint8x16_t* )p_u8_buffer;
for( i=0; i<i_data_num; i++ )
{
vst1q_u8( (uint8_t *) &p_u8x16_buffer[i], vrst16);
}边栏推荐
猜你喜欢
随机推荐
ROS learning 4 custom message
asp.net(c#)的货币格式化
Warning: retrying occurs during PIP installation
ROS learning 1- create workspaces and function packs
Arrangement of some library files
ORACLE进阶(三)数据字典详解
Solutions of ordinary differential equations (2) examples
Task failed task_ 1641530057069_ 0002_ m_ 000000
One question per day - replace spaces
Esphone retrofits old fans
319. 灯泡开关
Halcon Chinese character recognition
猜谜语啦(5)
使用arm Neon操作,提高内存拷贝速度
猜谜语啦(7)
[daily training] 1200 Minimum absolute difference
How to manage the performance of R & D team?
Esp8266 interrupt configuration
Search data in geo database
Halcon: check of blob analysis_ Blister capsule detection







