两个 Azure VM 克隆具有不同的处理器

两个 Azure VM 克隆具有不同的处理器

我有两个 Ubuntu 16.04 Azure VM,它们从同一映像创建,位于同一区域(西欧),配置为相同大小(标准 A1、1 vcpus、1.75 GB 内存)并同时创建(相差几天)。

检查 CPU 信息,它们完全不同,一个是英特尔,另一个是 AMD:

第一个虚拟机

>cat /proc/cpuinfo 
processor   : 0
vendor_id   : AuthenticAMD
cpu family  : 16
model       : 8
model name  : AMD Opteron(tm) Processor 4171 HE
stepping    : 1
microcode   : 0xffffffff
cpu MHz     : 2094.724
cache size  : 512 KB
physical id : 0
siblings    : 1
core id     : 0
cpu cores   : 1
apicid      : 0
initial apicid  : 0
fpu     : yes
fpu_exception   : yes
cpuid level : 5
wp      : yes
flags       : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow rep_good nopl cpuid extd_apicid pni cx16 popcnt hypervisor lahf_lm cmp_legacy cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw retpoline rsb_ctxsw vmmcall
bugs        : tlb_mmatch fxsave_leak sysret_ss_attrs null_seg amd_e400 spectre_v1 spectre_v2
bogomips    : 4189.44
TLB size    : 1024 4K pages
clflush size    : 64
cache_alignment : 64
address sizes   : 44 bits physical, 48 bits virtual
power management:

第二台虚拟机

>cat /proc/cpuinfo 
processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model       : 63
model name  : Intel(R) Xeon(R) CPU E5-2673 v3 @ 2.40GHz
stepping    : 2
microcode   : 0xffffffff
cpu MHz     : 2394.456
cache size  : 30720 KB
physical id : 0
siblings    : 1
core id     : 0
cpu cores   : 1
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 mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm pti retpoline fsgsbase bmi1 avx2 smep bmi2 erms xsaveopt
bugs        : cpu_meltdown spectre_v1 spectre_v2
bogomips    : 4788.91
clflush size    : 64
cache_alignment : 64
address sizes   : 44 bits physical, 48 bits virtual
power management:

对我来说这是一个大问题,因为一个虚拟机不支持 AVX 指令,并且依赖于 tensorflow 的程序无法运行。

怎么会这样?

是否不能保证两个不同的 VM 使用相同的 VM 处理器?

答案1

微软没有一个很好的矩阵来解决所有类型问题,但某些计算类型仅限于特定的处理器。

例如

  • Dv3 仅限于 Intel Xeon E5-2673 v3
  • A8-A11、H 仅限于 Xeon E5-2670
  • G 仅限于 Intel Xeon,但未指定具体是哪些

有时你会发现Microsoft 博客,这是您能找到的最官方的,可以为您提供更多信息。在这种情况下,该博客指出 A 系列虚拟机的 CPU 架构未定义。

考虑到所有这些,您能找到的最接近保证的英特尔处理器的Standard_D2_v3价格大约是其两倍。

相关内容