是否可以在 Fortran 中找到向量处理器的最大向量长度?

Posted

技术标签:

【中文标题】是否可以在 Fortran 中找到向量处理器的最大向量长度?【英文标题】:Is it possible to find the max vector length of the vector processor in Fortran? 【发布时间】:2015-07-15 15:56:30 【问题描述】:

如果处理器是矢量的,是否可以在 Fortran 中进行测试并找出矢量的最大长度?

我检查了下面列出的 cpuinfo

processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model       : 63
model name  : Intel(R) Xeon(R) CPU E5-2697 v3 @ 2.60GHz
stepping    : 2
microcode   : 0x27
cpu MHz     : 1201.078
cache size  : 17920 KB
physical id : 0
siblings    : 7
core id     : 0
cpu cores   : 7
apicid      : 0
initial apicid  : 0
fpu     : yes
fpu_exception   : yes
cpuid level : 15
wp      : yes
flags       : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid
bogomips    : 5200.36
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

【问题讨论】:

哪组指令(SSE、SSE2、AVX、Altivec)的长度?对于哪种数据类型?尝试使用 cpuid。 在 Linux 上,您可以阅读 /proc/cpuinfo 并查看支持哪些指令集。 【参考方案1】:

不,答案是指令集标志,在你的情况下avx2, sse4_1, sse4_2,你真的应该研究它们的意思https://en.wikipedia.org/wiki/SSE4https://en.wikipedia.org/wiki/Advanced_Vector_Extensions

同一个CPU有不同的向量指令,具有不同的能力。没有定义长度的单个向量单元。 (概念上)每个可能的指令集和每个数据类型都有一个。比如来自Wikipedia:

SSE 仅对 XMM 寄存器使用单一数据类型:

four 32-bit single-precision floating point numbers

SSE2 稍后会扩展 XMM 寄存器的使用范围,包括:

two 64-bit double-precision floating point numbers or
two 64-bit integers or
four 32-bit integers or
eight 16-bit short integers or
sixteen 8-bit bytes or characters.

AVX 和 AVX2 添加了 256 位操作,但这取决于您需要的特定操作是否在受支持的操作中,或者您需要使用 SSE(2)。

【讨论】:

以上是关于是否可以在 Fortran 中找到向量处理器的最大向量长度?的主要内容,如果未能解决你的问题,请参考以下文章

是否可以让 FORTRAN DLL 每次加载到随机地址?

Fortran:稀疏数组或列表

ubuntu18.04 编译fortran出现 ‘没有f951这个文件’处理

机器学习-支持向量机SVM

在向量的向量中找到 Point3f 的最大值

英特尔 Fortran 向量化:向量循环成本高于标量