web-dev-qa-db-ja.com

Intel NUCは同一のシステムよりもパフォーマンスがはるかに悪い

私は2つのIntel NUCシステムを持っています:

2.4 GHz i3-7100U(2.40 GHz-3MBキャッシュ-2コア-4スレッド)
2133MHzで4GB DDR4(1×4 GB)
250 GB NVMe PCIe M.2 SSD

昨年最初のものを購入しましたが、かなり好調です。私はここ数日2番目を持っていて、パフォーマンスははるかに悪いです。

テスト用のすべての変数を削除するために、同じライブフラッシュドライブ(Pop!_OS)で両方のシステムを起動し、Minetestを実行しました。古いシステムは60fpsを取得しますが、新しいシステムは20 fpsしか取得しません。私が知る限り、BIOS設定は同じです。

グラフィックパフォーマンスにこのような違いを引き起こす原因は何ですか?

更新-dmidecodeから情報を追加しました

古いシステム(昨年購入)から:

Handle 0x0000, DMI type 0, 24 bytes
BIOS Information
    Vendor: Intel Corp.
    Version: BNKBL357.86A.0057.2017.1122.1550
    Release Date: 11/22/2017
    Address: 0xF0000
    Runtime Size: 64 kB
    ROM Size: 8192 kB
    Characteristics:
        PCI is supported
        BIOS is upgradeable
        BIOS shadowing is allowed
        Boot from CD is supported
        Selectable boot is supported
        BIOS ROM is socketed
        EDD is supported
        5.25"/1.2 MB floppy services are supported (int 13h)
        3.5"/720 kB floppy services are supported (int 13h)
        3.5"/2.88 MB floppy services are supported (int 13h)
        Print screen service is supported (int 5h)
        Serial services are supported (int 14h)
        Printer services are supported (int 17h)
        ACPI is supported
        USB legacy is supported
        BIOS boot specification is supported
        Targeted content distribution is supported
        UEFI is supported
    BIOS Revision: 5.6
    Firmware Revision: 8.12

Handle 0x0002, DMI type 2, 15 bytes
Base Board Information
    Manufacturer: Intel Corporation
    Product Name: NUC7i3BNB
    Version: J22859-308
    Serial Number: GEBN730007PT
    Asset Tag:                                  
    Features:
        Board is a hosting board
        Board is replaceable
    Location In Chassis: Default string
    Chassis Handle: 0x0003
    Type: Motherboard
    Contained Object Handles: 0

新しいシステムから:

Handle 0x0000, DMI type 0, 24 bytes
BIOS Information
    Vendor: Intel Corp.
    Version: BNKBL357.86A.0057.2017.1122.1550
    Release Date: 11/22/2017
    Address: 0xF0000
    Runtime Size: 64 kB
    ROM Size: 8192 kB
    Characteristics:
        PCI is supported
        BIOS is upgradeable
        BIOS shadowing is allowed
        Boot from CD is supported
        Selectable boot is supported
        BIOS ROM is socketed
        EDD is supported
        5.25"/1.2 MB floppy services are supported (int 13h)
        3.5"/720 kB floppy services are supported (int 13h)
        3.5"/2.88 MB floppy services are supported (int 13h)
        Print screen service is supported (int 5h)
        Serial services are supported (int 14h)
        Printer services are supported (int 17h)
        ACPI is supported
        USB legacy is supported
        BIOS boot specification is supported
        Targeted content distribution is supported
        UEFI is supported
    BIOS Revision: 5.6
    Firmware Revision: 8.12

Handle 0x0002, DMI type 2, 15 bytes
Base Board Information
    Manufacturer: Intel Corporation
    Product Name: NUC7i3BNB
    Version: J22859-312
    Serial Number: GEBN809003J5
    Asset Tag:                                  
    Features:
        Board is a hosting board
        Board is replaceable
    Location In Chassis: Default string
    Chassis Handle: 0x0003
    Type: Motherboard
    Contained Object Handles: 0

アップデート2

https://www.pcsuggest.com/benchmarking-linux-systems-with-simple-command-line-tools/ にある簡単なRAM速度テストを実行しました。

スクリプト:

mkdir ramtest
Sudo mount tmpfs -t tmpfs ramtest/
cd ramtest
dd if=/dev/zero of=data_tmp bs=1M count=512
dd if=data_tmp of=/dev/null bs=1M count=512
cd ..
Sudo umount ramtest

古いシステムでの結果:

512+0 records in
512+0 records out
536870912 bytes (537 MB, 512 MiB) copied, 0.225257 s, 2.4 GB/s
512+0 records in
512+0 records out
536870912 bytes (537 MB, 512 MiB) copied, 0.0939961 s, 5.7 GB/s

新しいシステムでの結果:

512+0 records in
512+0 records out
536870912 bytes (537 MB, 512 MiB) copied, 1.28991 s, 416 MB/s
512+0 records in
512+0 records out
536870912 bytes (537 MB, 512 MiB) copied, 0.602888 s, 890 MB/s
2
Jon Hulka

確認したように、パフォーマンスの問題は古いバージョン57のファームウェアに関連しています。

最新のファームウェアバージョン67をインストールすると、問題が解決します。

これは、1月のMeltdown/Spectre緩和の更新後、改善された マイクロコードの更新 1が原因である可能性があります。

1
aventurin