
SIMD
文章平均质量分 80
菜鸟决心努力A-A
我不喜欢bug,呜呜呜呜呜呜
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
SSE基础
http://felix.abecassis.me/2011/09/cpp-getting-started-with-sse/大概内容如下:(格式很乱)In this article I will present how to use SSE instructions in C++ (or C). My goal is not to show how to write the fastest po原创 2016-03-30 10:36:35 · 567 阅读 · 0 评论 -
optimization
在进行RGBA2RGB的转换的时候: 需要做如下赋值: 最开始采用直接强制指针转换,再赋值的方法。 即如下所示:((unsigned int *)&x)[3] = ((unsigned int *)&y)[0];报warning(此处通过-Werror选项,将warning也设置为error):error: dereferencing type-punned pointer will br原创 2016-06-13 18:18:09 · 911 阅读 · 0 评论