We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e437994 commit 5cbb511Copy full SHA for 5cbb511
resources/SSE指令集补充.md
@@ -1,3 +1,5 @@
1
+# SSE指令集记录
2
+
3
- _mm_cvtps_epi32 把四个float变量强转为四个int变量。其中需要注意的是他的截断规则:四舍五入,在进位后末位是偶数的进,否则不进位。
4
5
- _mm_cvttps_epi32 把四个float变量强转为四个int变量。直接截断,和c/c++中的r = (int)a一样。
@@ -82,5 +84,7 @@
82
84
```
83
85
86
- _mm_extract_epi16(a, imm) 表示: 返回imm位置上的16位数。
87
88
- _mm_min_epu16 表示:两个数的最小者。
89
90
- _mm_minpos_epu16 表示:返回128 位值, 最低序的 16 位是参数找到的最小值a,第二个低的顺序 16 位是参数找到的最小值的索引a。
0 commit comments