x86-64 处理器的数据类型

发布于 2024-09-04 09:38:04 字数 40 浏览 7 评论 0原文

这些数据类型有什么用? __m64,__m128, __m256?

What are these data types for? __m64, __m128,
__m256 ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

避讳 2024-09-11 09:38:04

快速的谷歌搜索给了我:

不幸的是,我无法轻易找到 __m256 是什么,但我怀疑它是相同的。

基本上,MMX 和类似技术的数据结构。

A quick google-search gives me:

Unfortunately I can't readily find what __m256 is but I suspect it is along the same lines.

Basically, data structures for MMX and similar technologies.

老子叫无熙 2024-09-11 09:38:04

它们是 SSE 指令,包括新的AVX 扩展名。 http://www.serc.iisc.ernet.in/ComputingFacilities/systems/Dell_Doc/Intel_C++_Compiler/en_US/compiler_c/main_cls/intref_cls/common/intref_avx_details.htm 在这里

它们存储向量 - 多个同时值。您可以使用特殊指令同时对向量中的所有值进行计算。检查链接

they are SSE instructions, including new AVX extension. http://www.serc.iisc.ernet.in/ComputingFacilities/systems/Dell_Doc/Intel_C++_Compiler/en_US/compiler_c/main_cls/intref_cls/common/intref_avx_details.htm and here

they store vectors - multiple values at the same time. you can do calculations on all values in a vector simultaneously with special instructions. Chech links

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文