You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am currently testing the write RDMA bandwidth of the IB network card. I used two methods to test it:
The first:
#server
watch ib_write_bw -d mlx5_0 -q 1 --report_gbits -F
#client
ids=mlx5_0
ip=192.168.100.201
for id in ${ids//,/ }
do
ib_write_bw -d $id -q 1 --report_gbits -F $ip
sleep 3
done
The test results are as follows:
The second:
#server
watch ib_write_bw -d mlx5_0 -q 1 --report_gbits -F -a
#client
ids=mlx5_0
ip=192.168.100.201
for id in ${ids//,/ }
do
ib_write_bw -d $id -q 1 --report_gbits -F -a $ip
sleep 3
done
The test results are as follows:
From the test results of method 1, the indicators are not in line with expectations, because its rate is 400 Gb/sec (4X NDR)
But it seems normal from the second method. Which one should I follow?
The text was updated successfully, but these errors were encountered:
I am currently testing the write RDMA bandwidth of the IB network card. I used two methods to test it:
The first:
The test results are as follows:
The second:
The test results are as follows:
From the test results of method 1, the indicators are not in line with expectations, because its rate is 400 Gb/sec (4X NDR)
But it seems normal from the second method. Which one should I follow?
The text was updated successfully, but these errors were encountered: