admin avatar

来个QNAP 301w IPQ807简单的CPU跑分

🕦 by admin

ssh连接到QNAP 301w ,然后执行下面的命令进行简单的CPU跑分

openssl speed -evp aes-256-gcm openssl speed -evp chacha20-poly1305

结果如下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

Doing aes-256-gcm for 3s on 16 size blocks: 20326424 aes-256-gcm's in 2.99s
Doing aes-256-gcm for 3s on 64 size blocks: 13795393 aes-256-gcm's in 2.99s
Doing aes-256-gcm for 3s on 256 size blocks: 6514311 aes-256-gcm's in 3.00s
Doing aes-256-gcm for 3s on 1024 size blocks: 2116706 aes-256-gcm's in 3.00s
Doing aes-256-gcm for 3s on 8192 size blocks: 288409 aes-256-gcm's in 3.00s
Doing aes-256-gcm for 3s on 16384 size blocks: 144659 aes-256-gcm's in 2.99s
OpenSSL 1.1.1o  3 May 2022
built on: Wed Jun  1 19:15:57 2022 UTC
options:bn(64,64) rc4(char) des(int) aes(partial) idea(int) blowfish(ptr) 
compiler: aarch64-openwrt-linux-musl-gcc -fPIC -pthread -Wa,--noexecstack -Wall -O3 -pipe -march=armv8-a -mcpu=cortex-a53+crypto -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -Wformat -Werror=format-security -fstack-protector -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -O3 -fpic -ffunction-sections -fdata-sections -znow -zrelro -DOPENSSL_USE_NODELETE -DOPENSSL_PIC -DOPENSSL_CPUID_OBJ -DOPENSSL_BN_ASM_MONT -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DKECCAK1600_ASM -DVPAES_ASM -DECP_NISTZ256_ASM -DPOLY1305_ASM -DZLIB -DZLIB_SHARED -DNDEBUG -DOPENSSL_PREFER_CHACHA_OVER_GCM -DALG_ZERO_COPY
The 'numbers' are in 1000s of bytes per second processed.
type             16 bytes     64 bytes    256 bytes   1024 bytes   8192 bytes  16384 bytes
aes-256-gcm     108770.16k   295286.00k   555887.87k   722502.31k   787548.84k   792673.26k
上面的跑分命令,CPU整体负荷在25%左右。

查看CPU的配置信息

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
user@OpenWrt:~# cat /proc/cpuinfo
processor	: 0
BogoMIPS	: 38.40
Features	: fp asimd evtstrm aes pmull sha1 sha2 crc32
CPU implementer	: 0x41
CPU architecture: 8
CPU variant	: 0x0
CPU part	: 0xd03
CPU revision	: 4

processor	: 1
BogoMIPS	: 38.40
Features	: fp asimd evtstrm aes pmull sha1 sha2 crc32
CPU implementer	: 0x41
CPU architecture: 8
CPU variant	: 0x0
CPU part	: 0xd03
CPU revision	: 4

processor	: 2
BogoMIPS	: 38.40
Features	: fp asimd evtstrm aes pmull sha1 sha2 crc32
CPU implementer	: 0x41
CPU architecture: 8
CPU variant	: 0x0
CPU part	: 0xd03
CPU revision	: 4

processor	: 3
BogoMIPS	: 38.40
Features	: fp asimd evtstrm aes pmull sha1 sha2 crc32
CPU implementer	: 0x41
CPU architecture: 8
CPU variant	: 0x0
CPU part	: 0xd03
CPU revision	: 4

Hardware	: QNAP 301w IPQ807x/AP-HK01-C1

💘 相关文章

写一条评论