x86-64 处理器的数据类型
这些数据类型有什么用? __m64,__m128, __m256?
What are these data types for? __m64, __m128,
__m256 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
这些数据类型有什么用? __m64,__m128, __m256?
What are these data types for? __m64, __m128,
__m256 ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
快速的谷歌搜索给了我:
不幸的是,我无法轻易找到 __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.
MMX 技术封装算术内在函数 (C++)。
MMX Technology Packed Arithmetic Intrinsics (C++).
它们是 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