布罗利 发表于 2022-8-12 16:36

基于瑞萨RZ/G2L存储读写速度与网络实测

一、存储读写速度测试
1、eMMC读写测试
OK-G2LD-C平台的eMMC默认运行于HS200 模式,工作位宽为8。下面简单测试eMMC的读写速度,这里我们以读写ext4 文件系统为例。

写入测试:

root@okg2l:~# dd if=/dev/zero of=/test bs=1M count= 500 conv=fsync

500+0 records in

500+0 records out

524288000 bytes (524 MB)copied, 7.81532s, 67.1MB/s

读取测试:

root@okg2l:~# dd if=/test of=/dev/null bs=1M count= 500 conv=fsync

500+0 records in

500+0 records out

524288000 bytes (524 MB)copied, 6.49422s,80.7MB/s

通过以上可以看到,eMMC的写入速度为67.1MB/s,读取速度为80.7 MB/s。


2、TF卡读写测试

OK-G2LD-C平台的TF卡默认运行于SDR104模式,工作位宽为4,下面简单测试TF卡的读写速度,我们仍然以读写ext4文件系统为例。

写入测试:

root@okg2l:~# dd if=/dev/zero of=/run/media/mmcblk1p1/test bs=1M count=500 conv=fsync \oflag=direct

500+0 records in

500+0 records out

524288000 bytes (524 MB) copied, 107.154s, 4.9MB/s

读取测试:

root@okg2l:~# dd if=/run/media/mmcblk1p1/test of=/dev/null bs=1M iflag=direct

500+0 records in

500+0 records out

524288000 bytes (524 MB) copied, 14.7009s, 35.7MB/s

通过以上测试可以看到,TF卡的写入速度为4.9 MB/s,读取速度为35.7 MB/s。


3、USB2.0读写测试

OK-G2LD-C支持两个USB2.0接口,用户可以在任何一个板载USB HOST接口上连接USB鼠标、USB键盘、U盘等设备,并且支持以上设备的热插拔。这里我们以读写USB2.0接口的U盘为例。

写入测试:

root@okg2l:~# dd if=/dev/zero of=/run/media/sda1/test bs=1M count=50 conv = fsync \oflag=direct

50+0 records in

50+0 records out

52428800 bytes (52 MB) copied, 8.81593s, 5.9MB/s

读取测试:
root@okg2l:~# dd if=/run/media/sda1/test of=/dev/null bs=1M iflag=direct

50+0 records in

50+0 records out

52428800 bytes (52 MB) copied, 1.46226s, 35.9MB/s

通过以上测试结果可以看到,USB2.0的写入速度为5.9 MB/s,读取速度为35.9MB/s。

4、DDR带宽测试

执行测试操作

root@okg2l:~# memory_bandwidth.sh

打印信息如下:





OK-G2LD-C的DDR4带宽如上图所示,读取带宽2765Mb/s,读入带宽约为891Mb/s。

二、网络测试
1、网络打流测试

OK-G2LD-C开发板搭载两个千兆网口,小编使用iperf3打流测试其实际网络带宽。

root@okg2l:~# iperf3 -c 192.168.0.2 -i 5 -t 60

Connecting to host 192.168.0.2, port 5201

local 192.168.0.232 port 39804 connected to 192.168.0.2 port 5201

[ ID] IntervalTransferBitrateRetrCwnd

   0.00-5.00   sec   38.3 MBytes64.3 Mbits/sec1736   1.41 KBytes

   5.00-10.00sec44.2 MBytes74.2 Mbits/sec1785   4.24 KBytes

10.00-15.00sec67.7 MBytes   114 Mbits/sec2741   2.83 KBytes

15.00-20.00sec26.0 MBytes43.6 Mbits/sec1043   1.41 KBytes

20.00-25.00sec53.2 MBytes89.2 Mbits/sec2054   2.83 KBytes

25.00-30.00sec42.4 MBytes71.2 Mbits/sec2030   2.83 KBytes

30.00-35.00sec44.1 MBytes74.0 Mbits/sec2085   5.66 KBytes

35.00-40.00sec32.3 MBytes54.2 Mbits/sec1528   1.41 KBytes

40.00-45.00sec33.6 MBytes56.4 Mbits/sec1671   11.3 KBytes

45.00-50.00sec45.1 MBytes75.6 Mbits/sec2151   1.41 KBytes

50.00-55.00sec28.1 MBytes47.1 Mbits/sec1388   1.41 KBytes

55.00-60.00sec24.7 MBytes41.5 Mbits/sec1222   2.83 KBytes

- - - - - - - - - - - - - - - - - - -

[ ID] Interval   TransferBitrate   Retr

   0.00-60.00sec   480 MBytes67.1 Mbits/sec21434    sender

   0.00-60.00sec   479 MBytes67.0 Mbits/sec            receiver


此次测试使用OK-G2LD-C开发板和OK1028-C开发板的千兆网口进行对测,其中OK-G2LD-C开发板作为客户端,OK1028-C开发板作为服务端。通过以上数据可以看到,千兆网口的传输带宽实际约为480 MBytes。以上就是小编为大家带来的OK-G2LD-C开发板存储读写速度和千兆网口实际带宽的测试,希望能够对各位工程师小伙伴有所帮助。https://www.forlinx.com/product/150.html

yangjiaxu 发表于 2022-8-29 13:18

感觉这个速度还是可以的,想知道OK-G2LD-C平台是否容易上手,对新手来说,是否友好呀
页: [1]
查看完整版本: 基于瑞萨RZ/G2L存储读写速度与网络实测