"examples/community/wildcard_stable_diffusion.py" did not exist on "7c2262640bbf9fa61c281bc49eb8494cb48da81f"
Commit 6512da8d authored by wangkaixiong's avatar wangkaixiong 🚴🏼
Browse files

init

parent 42de4415
#!/usr/bin/env python3
import sys
import os
import time
infiniband_path="/sys/class/infiniband"
port_counter_list = ['port_rcv_data',
'port_rcv_packets',
'port_xmit_data',
'port_xmit_packets']
HCA_list = []
HCA_num = 0
All_counter=[]
path_list=os.listdir(infiniband_path)
path_list.sort()
def init_ib_port_counter():
#for HCA in os.listdir(infiniband_path):
for HCA in path_list:
# print HCA
# if HCA == 'mlx5_2' or HCA == 'mlx5_3':
# continue
HCA_dict = dict(name=HCA, port_list=[])
HCA_path=os.path.join(infiniband_path, HCA, 'ports')
for port in os.listdir(HCA_path):
port_path = os.path.join(HCA_path, port)
#print port_path
port_dict = dict(name=port, counter_list=[])
#print port_dict
for counter in port_counter_list:
counter_path = os.path.join(port_path, 'counters', counter)
#print counter_path
fh = open(counter_path)
counter_value = int(fh.read())
counter_dict = dict(name=counter, path=counter_path, fh=fh, bandwidth=0.0, value=counter_value, pre_value=counter_value)
port_dict['counter_list'].append(counter_dict)
#print item_dict
#print port_dict
HCA_dict['port_list'].append(port_dict)
HCA_list.append(HCA_dict)
# counter of all port
for counter in port_counter_list:
counter_dict = dict(name=counter, bandwidth=0.0)
All_counter.append(counter_dict)
def get_ib_port_bandwidth(sleep_sec):
#reset All counter
for counter in All_counter:
counter['bandwidth'] = 0.0
for HCA in HCA_list:
#print HCA['name']
for port in HCA['port_list']:
#print port['name']
counter_id = 0
for counter in port['counter_list']:
#print counter['name']
counter['fh'].seek(0)
counter['value'] = int(counter['fh'].read())
counter['bandwidth'] = (counter['value'] - counter['pre_value'])/sleep_sec
counter['pre_value'] = counter['value']
if counter['name'] == 'port_rcv_data' or counter['name'] == 'port_xmit_data' :
counter['bandwidth'] = counter['bandwidth']/1024.0/1024.0*4*8
#print counter['name'], All_counter[counter_id]['name']
All_counter[counter_id]['bandwidth'] += counter['bandwidth']
counter_id += 1
def print_ib_port_bandwidth():
title_str = '{:^10}{:^10}{:^15}{:^15}{:^15}{:^15}'.format('HCA', 'port', 'recv_data/Mbps', 'recv_pkts', 'xmit_data/Mbps', 'xmit_pkts')
title_str += '{:^22}{:^22}'.format('rcv_pkt_avg_size/Byte', 'xmit_pkt_avg_size/Byte')
print (title_str)
sep_line = '{:-^80}'.format('-')
sep_line += '{:-^44}'.format('-')
print (sep_line)
#print "%5s %10s %10s %10s %10s %10s" % ('HCA', 'port', 'recv_data', 'recv_pkts', 'xmit_data', 'xmit_pkts')
for HCA in HCA_list:
for port in HCA['port_list']:
data_str = '{:^10}{:^10}'.format(HCA['name'], port['name'])
for counter in port['counter_list']:
data_str += '{:^15.2f}'.format(counter['bandwidth'])
if port['counter_list'][1]['bandwidth'] != 0 :
rcv_pkt_avg_size = port['counter_list'][0]['bandwidth']*1024*1024/8/port['counter_list'][1]['bandwidth']
else:
rcv_pkt_avg_size = 0.0
if port['counter_list'][3]['bandwidth'] != 0 :
xmit_pkt_avg_size = port['counter_list'][2]['bandwidth']*1024*1024/8/port['counter_list'][3]['bandwidth']
else:
xmit_pkt_avg_size = 0.0
data_str += '{:^22.2f}'.format(rcv_pkt_avg_size)
data_str += '{:^22.2f}'.format(xmit_pkt_avg_size)
print (data_str)
print (sep_line)
data_str = '{:^10}{:^10}'.format('All',' ')
for counter in All_counter:
data_str += '{:^15.2f}'.format(counter['bandwidth'])
if All_counter[1]['bandwidth'] != 0.0 :
rcv_pkt_avg_size = All_counter[0]['bandwidth']*1024*1024/8/All_counter[1]['bandwidth']
else:
rcv_pkt_avg_size = 0.0
if All_counter[3]['bandwidth'] != 0.0 :
xmit_pkt_avg_size = All_counter[2]['bandwidth']*1024*1024/8/All_counter[3]['bandwidth']
else:
xmit_pkt_avg_size = 0.0
data_str += '{:^22.2f}'.format(rcv_pkt_avg_size)
data_str += '{:^22.2f}'.format(xmit_pkt_avg_size)
print (data_str)
print ('\n')
if __name__ == '__main__' :
if len(sys.argv) > 1 :
sleep_sec = float(sys.argv[1])
else:
sleep_sec = 1.0
init_ib_port_counter()
while(True):
time.sleep(sleep_sec)
get_ib_port_bandwidth(sleep_sec)
print_ib_port_bandwidth()
#!/bin/bash
SERVER_IP="master" # 服务端的 IP 地址
for CLIENT_IP in node1 node2 node3; do
# CLIENT_IP="node1" # 客户端的 IP 地址
TEST_DURATION=10 # 测试持续时间(秒)
log_dir_name=ibperf_result_${SERVER_IP}_${CLIENT_IP}
# 判断目录是否存在,若不存在则创建
if [ -d "$log_dir_name" ]; then
echo "目录 '$log_dir_name' 已存在。"
else
echo "目录 '$log_dir_name' 不存在,正在创建..."
mkdir -p "$log_dir_name"
if [ $? -eq 0 ]; then
echo "目录 '$log_dir_name' 创建成功。"
else
echo "目录 '$log_dir_name' 创建失败,请检查权限或其他问题。"
exit 1 # 表示有错误发生,程序非正常退出
fi
fi
# 定义变量
for IB_DEV in mlx5_1 mlx5_2 mlx5_3 mlx5_4 mlx5_7 mlx5_8 mlx5_9 mlx5_10; do
#for IB_DEV in mlx5_9; do
LOG_FILE="${log_dir_name}/bandwidth_test_${IB_DEV}.log" # 日志文件名
# 清空日志文件
> "$LOG_FILE"
# 启动服务端
echo "Starting server on $SERVER_IP..."
ib_write_bw --ib-dev=$IB_DEV --connection=RC --qp=32 > /dev/null 2>&1 &
SERVER_PID=$!
# 等待服务端启动完成
sleep 2
# 启动客户端
echo "Starting client on $CLIENT_IP..."
ssh root@$CLIENT_IP "ib_write_bw --ib-dev=$IB_DEV $SERVER_IP --CPU-freq --report_gbits --duration=$TEST_DURATION --connection=RC --mtu=4096 --qp=32 --size=65536" >> "$LOG_FILE" 2>&1
# 等待客户端完成
sleep $((TEST_DURATION + 2))
# 停止服务端
echo "Stopping server on $SERVER_IP..."
kill $SERVER_PID
# 输出测试结果
echo "Bandwidth test completed. Results saved to $LOG_FILE."
cat "$LOG_FILE"
cd ${log_dir_name}
ls
echo "Filename, BW_Average" > output.csv
for file in *.log; do
bw_avg=$(awk '/#bytes/{getline; print $4}' "$file")
echo "$file, $bw_avg" >> output.csv
done
cat output.csv
cd -
done
done
Authorized users only. All activities may be monitored and reported.
WARNING: BW peak won't be measured in this run.
---------------------------------------------------------------------------------------
RDMA_Write BW Test
Dual-port : OFF Device : mlx5_1
Number of qps : 32 Transport type : IB
Connection type : RC Using SRQ : OFF
PCIe relax order: ON Lock-free : OFF
ibv_wr* API : ON Using DDP : OFF
TX depth : 128
CQ Moderation : 1
Mtu : 4096[B]
Link type : IB
Max inline data : 0[B]
rdma_cm QPs : OFF
Data ex. method : Ethernet
---------------------------------------------------------------------------------------
local address: LID 0x13 QPN 0x052f PSN 0xd3c4f1 RKey 0x1fff00 VAddr 0x007f0a6cadd000
local address: LID 0x13 QPN 0x0530 PSN 0x853dbe RKey 0x1fff00 VAddr 0x007f0a6caed000
local address: LID 0x13 QPN 0x0531 PSN 0x570bfa RKey 0x1fff00 VAddr 0x007f0a6cafd000
local address: LID 0x13 QPN 0x0532 PSN 0xfae18a RKey 0x1fff00 VAddr 0x007f0a6cb0d000
local address: LID 0x13 QPN 0x0533 PSN 0x942d0c RKey 0x1fff00 VAddr 0x007f0a6cb1d000
local address: LID 0x13 QPN 0x0534 PSN 0xc1d848 RKey 0x1fff00 VAddr 0x007f0a6cb2d000
local address: LID 0x13 QPN 0x0535 PSN 0xad14d1 RKey 0x1fff00 VAddr 0x007f0a6cb3d000
local address: LID 0x13 QPN 0x0536 PSN 0x606bc0 RKey 0x1fff00 VAddr 0x007f0a6cb4d000
local address: LID 0x13 QPN 0x0537 PSN 0x34c72e RKey 0x1fff00 VAddr 0x007f0a6cb5d000
local address: LID 0x13 QPN 0x0538 PSN 0x242ce1 RKey 0x1fff00 VAddr 0x007f0a6cb6d000
local address: LID 0x13 QPN 0x0539 PSN 0xaceaa7 RKey 0x1fff00 VAddr 0x007f0a6cb7d000
local address: LID 0x13 QPN 0x053a PSN 0x1726e5 RKey 0x1fff00 VAddr 0x007f0a6cb8d000
local address: LID 0x13 QPN 0x053b PSN 0x7bc837 RKey 0x1fff00 VAddr 0x007f0a6cb9d000
local address: LID 0x13 QPN 0x053c PSN 0x1f1fe1 RKey 0x1fff00 VAddr 0x007f0a6cbad000
local address: LID 0x13 QPN 0x053d PSN 0x46b0c1 RKey 0x1fff00 VAddr 0x007f0a6cbbd000
local address: LID 0x13 QPN 0x053e PSN 0x92eb27 RKey 0x1fff00 VAddr 0x007f0a6cbcd000
local address: LID 0x13 QPN 0x053f PSN 0x6217e7 RKey 0x1fff00 VAddr 0x007f0a6cbdd000
local address: LID 0x13 QPN 0x0540 PSN 0x1edbde RKey 0x1fff00 VAddr 0x007f0a6cbed000
local address: LID 0x13 QPN 0x0541 PSN 0xaec398 RKey 0x1fff00 VAddr 0x007f0a6cbfd000
local address: LID 0x13 QPN 0x0542 PSN 0xfcd6e RKey 0x1fff00 VAddr 0x007f0a6cc0d000
local address: LID 0x13 QPN 0x0543 PSN 0xf4186d RKey 0x1fff00 VAddr 0x007f0a6cc1d000
local address: LID 0x13 QPN 0x0544 PSN 0xbbc36f RKey 0x1fff00 VAddr 0x007f0a6cc2d000
local address: LID 0x13 QPN 0x0545 PSN 0x1af471 RKey 0x1fff00 VAddr 0x007f0a6cc3d000
local address: LID 0x13 QPN 0x0546 PSN 0xa8dbef RKey 0x1fff00 VAddr 0x007f0a6cc4d000
local address: LID 0x13 QPN 0x0547 PSN 0x31c8e RKey 0x1fff00 VAddr 0x007f0a6cc5d000
local address: LID 0x13 QPN 0x0548 PSN 0x2b7d0b RKey 0x1fff00 VAddr 0x007f0a6cc6d000
local address: LID 0x13 QPN 0x0549 PSN 0xe9a49a RKey 0x1fff00 VAddr 0x007f0a6cc7d000
local address: LID 0x13 QPN 0x054a PSN 0xecd1de RKey 0x1fff00 VAddr 0x007f0a6cc8d000
local address: LID 0x13 QPN 0x054b PSN 0xffd66e RKey 0x1fff00 VAddr 0x007f0a6cc9d000
local address: LID 0x13 QPN 0x054c PSN 0x39b0f RKey 0x1fff00 VAddr 0x007f0a6ccad000
local address: LID 0x13 QPN 0x054d PSN 0x4d1a42 RKey 0x1fff00 VAddr 0x007f0a6ccbd000
local address: LID 0x13 QPN 0x054e PSN 0x51440 RKey 0x1fff00 VAddr 0x007f0a6cccd000
remote address: LID 0x01 QPN 0x054d PSN 0xdb50ba RKey 0x1fff00 VAddr 0x007fa3d2087000
remote address: LID 0x01 QPN 0x054e PSN 0x9e5853 RKey 0x1fff00 VAddr 0x007fa3d2097000
remote address: LID 0x01 QPN 0x054f PSN 0x453b6b RKey 0x1fff00 VAddr 0x007fa3d20a7000
remote address: LID 0x01 QPN 0x0550 PSN 0x309aa7 RKey 0x1fff00 VAddr 0x007fa3d20b7000
remote address: LID 0x01 QPN 0x0551 PSN 0x800c65 RKey 0x1fff00 VAddr 0x007fa3d20c7000
remote address: LID 0x01 QPN 0x0552 PSN 0xe5e72d RKey 0x1fff00 VAddr 0x007fa3d20d7000
remote address: LID 0x01 QPN 0x0553 PSN 0x852a52 RKey 0x1fff00 VAddr 0x007fa3d20e7000
remote address: LID 0x01 QPN 0x0554 PSN 0x9f79ad RKey 0x1fff00 VAddr 0x007fa3d20f7000
remote address: LID 0x01 QPN 0x0555 PSN 0xca317 RKey 0x1fff00 VAddr 0x007fa3d2107000
remote address: LID 0x01 QPN 0x0556 PSN 0x6c2516 RKey 0x1fff00 VAddr 0x007fa3d2117000
remote address: LID 0x01 QPN 0x0557 PSN 0x2d3738 RKey 0x1fff00 VAddr 0x007fa3d2127000
remote address: LID 0x01 QPN 0x0558 PSN 0x2e06a2 RKey 0x1fff00 VAddr 0x007fa3d2137000
remote address: LID 0x01 QPN 0x0559 PSN 0x78d9b0 RKey 0x1fff00 VAddr 0x007fa3d2147000
remote address: LID 0x01 QPN 0x055a PSN 0x1e4666 RKey 0x1fff00 VAddr 0x007fa3d2157000
remote address: LID 0x01 QPN 0x055b PSN 0x219562 RKey 0x1fff00 VAddr 0x007fa3d2167000
remote address: LID 0x01 QPN 0x055c PSN 0x9ae9b4 RKey 0x1fff00 VAddr 0x007fa3d2177000
remote address: LID 0x01 QPN 0x055d PSN 0x7827f0 RKey 0x1fff00 VAddr 0x007fa3d2187000
remote address: LID 0x01 QPN 0x055e PSN 0x37c5b3 RKey 0x1fff00 VAddr 0x007fa3d2197000
remote address: LID 0x01 QPN 0x055f PSN 0xbbb149 RKey 0x1fff00 VAddr 0x007fa3d21a7000
remote address: LID 0x01 QPN 0x0560 PSN 0x4a07cb RKey 0x1fff00 VAddr 0x007fa3d21b7000
remote address: LID 0x01 QPN 0x0561 PSN 0xea8006 RKey 0x1fff00 VAddr 0x007fa3d21c7000
remote address: LID 0x01 QPN 0x0562 PSN 0xc55594 RKey 0x1fff00 VAddr 0x007fa3d21d7000
remote address: LID 0x01 QPN 0x0563 PSN 0x976c32 RKey 0x1fff00 VAddr 0x007fa3d21e7000
remote address: LID 0x01 QPN 0x0564 PSN 0x2b3f1c RKey 0x1fff00 VAddr 0x007fa3d21f7000
remote address: LID 0x01 QPN 0x0565 PSN 0x1dc4b7 RKey 0x1fff00 VAddr 0x007fa3d2207000
remote address: LID 0x01 QPN 0x0566 PSN 0x65ec80 RKey 0x1fff00 VAddr 0x007fa3d2217000
remote address: LID 0x01 QPN 0x0567 PSN 0xca376b RKey 0x1fff00 VAddr 0x007fa3d2227000
remote address: LID 0x01 QPN 0x0568 PSN 0x1f1adb RKey 0x1fff00 VAddr 0x007fa3d2237000
remote address: LID 0x01 QPN 0x0569 PSN 0x383827 RKey 0x1fff00 VAddr 0x007fa3d2247000
remote address: LID 0x01 QPN 0x056a PSN 0x5d6cd4 RKey 0x1fff00 VAddr 0x007fa3d2257000
remote address: LID 0x01 QPN 0x056b PSN 0x9e6923 RKey 0x1fff00 VAddr 0x007fa3d2267000
remote address: LID 0x01 QPN 0x056c PSN 0xedd00d RKey 0x1fff00 VAddr 0x007fa3d2277000
---------------------------------------------------------------------------------------
#bytes #iterations BW peak[Gb/sec] BW average[Gb/sec] MsgRate[Mpps]
65536 2252883 0.00 196.87 0.375504
---------------------------------------------------------------------------------------
Authorized users only. All activities may be monitored and reported.
WARNING: BW peak won't be measured in this run.
---------------------------------------------------------------------------------------
RDMA_Write BW Test
Dual-port : OFF Device : mlx5_10
Number of qps : 32 Transport type : IB
Connection type : RC Using SRQ : OFF
PCIe relax order: ON Lock-free : OFF
ibv_wr* API : ON Using DDP : OFF
TX depth : 128
CQ Moderation : 1
Mtu : 4096[B]
Link type : IB
Max inline data : 0[B]
rdma_cm QPs : OFF
Data ex. method : Ethernet
---------------------------------------------------------------------------------------
local address: LID 0x1f QPN 0x0414 PSN 0x64576a RKey 0x23bf00 VAddr 0x007f0f0bf42000
local address: LID 0x1f QPN 0x0415 PSN 0xc1de0c RKey 0x23bf00 VAddr 0x007f0f0bf52000
local address: LID 0x1f QPN 0x0416 PSN 0x8bd466 RKey 0x23bf00 VAddr 0x007f0f0bf62000
local address: LID 0x1f QPN 0x0417 PSN 0x8bb2bd RKey 0x23bf00 VAddr 0x007f0f0bf72000
local address: LID 0x1f QPN 0x0418 PSN 0xbe9e8c RKey 0x23bf00 VAddr 0x007f0f0bf82000
local address: LID 0x1f QPN 0x0419 PSN 0x439efe RKey 0x23bf00 VAddr 0x007f0f0bf92000
local address: LID 0x1f QPN 0x041a PSN 0xb4a785 RKey 0x23bf00 VAddr 0x007f0f0bfa2000
local address: LID 0x1f QPN 0x041b PSN 0xce0d9a RKey 0x23bf00 VAddr 0x007f0f0bfb2000
local address: LID 0x1f QPN 0x041c PSN 0xbb0036 RKey 0x23bf00 VAddr 0x007f0f0bfc2000
local address: LID 0x1f QPN 0x041d PSN 0x5e1880 RKey 0x23bf00 VAddr 0x007f0f0bfd2000
local address: LID 0x1f QPN 0x041e PSN 0x24a424 RKey 0x23bf00 VAddr 0x007f0f0bfe2000
local address: LID 0x1f QPN 0x041f PSN 0x7cfbe7 RKey 0x23bf00 VAddr 0x007f0f0bff2000
local address: LID 0x1f QPN 0x0420 PSN 0x85b947 RKey 0x23bf00 VAddr 0x007f0f0c002000
local address: LID 0x1f QPN 0x0421 PSN 0x2596e8 RKey 0x23bf00 VAddr 0x007f0f0c012000
local address: LID 0x1f QPN 0x0422 PSN 0xf53586 RKey 0x23bf00 VAddr 0x007f0f0c022000
local address: LID 0x1f QPN 0x0423 PSN 0x4ffdd2 RKey 0x23bf00 VAddr 0x007f0f0c032000
local address: LID 0x1f QPN 0x0424 PSN 0xd6397f RKey 0x23bf00 VAddr 0x007f0f0c042000
local address: LID 0x1f QPN 0x0425 PSN 0x562ccd RKey 0x23bf00 VAddr 0x007f0f0c052000
local address: LID 0x1f QPN 0x0426 PSN 0xd08024 RKey 0x23bf00 VAddr 0x007f0f0c062000
local address: LID 0x1f QPN 0x0427 PSN 0x595041 RKey 0x23bf00 VAddr 0x007f0f0c072000
local address: LID 0x1f QPN 0x0428 PSN 0xd7eb0e RKey 0x23bf00 VAddr 0x007f0f0c082000
local address: LID 0x1f QPN 0x0429 PSN 0xeea4c5 RKey 0x23bf00 VAddr 0x007f0f0c092000
local address: LID 0x1f QPN 0x042a PSN 0xf69d45 RKey 0x23bf00 VAddr 0x007f0f0c0a2000
local address: LID 0x1f QPN 0x042b PSN 0xc4a969 RKey 0x23bf00 VAddr 0x007f0f0c0b2000
local address: LID 0x1f QPN 0x042c PSN 0x63a8b6 RKey 0x23bf00 VAddr 0x007f0f0c0c2000
local address: LID 0x1f QPN 0x042d PSN 0x898d49 RKey 0x23bf00 VAddr 0x007f0f0c0d2000
local address: LID 0x1f QPN 0x042e PSN 0x2cb636 RKey 0x23bf00 VAddr 0x007f0f0c0e2000
local address: LID 0x1f QPN 0x042f PSN 0x93ec80 RKey 0x23bf00 VAddr 0x007f0f0c0f2000
local address: LID 0x1f QPN 0x0430 PSN 0xe22c9f RKey 0x23bf00 VAddr 0x007f0f0c102000
local address: LID 0x1f QPN 0x0431 PSN 0x87e0b5 RKey 0x23bf00 VAddr 0x007f0f0c112000
local address: LID 0x1f QPN 0x0432 PSN 0xb05927 RKey 0x23bf00 VAddr 0x007f0f0c122000
local address: LID 0x1f QPN 0x0433 PSN 0x6e268a RKey 0x23bf00 VAddr 0x007f0f0c132000
remote address: LID 0x08 QPN 0x0426 PSN 0x391efd RKey 0x23bf00 VAddr 0x007f07afc18000
remote address: LID 0x08 QPN 0x0427 PSN 0xa35cda RKey 0x23bf00 VAddr 0x007f07afc28000
remote address: LID 0x08 QPN 0x0428 PSN 0xed72e6 RKey 0x23bf00 VAddr 0x007f07afc38000
remote address: LID 0x08 QPN 0x0429 PSN 0xcbc06 RKey 0x23bf00 VAddr 0x007f07afc48000
remote address: LID 0x08 QPN 0x042a PSN 0xc99bd8 RKey 0x23bf00 VAddr 0x007f07afc58000
remote address: LID 0x08 QPN 0x042b PSN 0x1d4d24 RKey 0x23bf00 VAddr 0x007f07afc68000
remote address: LID 0x08 QPN 0x042c PSN 0x6b7e7d RKey 0x23bf00 VAddr 0x007f07afc78000
remote address: LID 0x08 QPN 0x042d PSN 0xf3f1fc RKey 0x23bf00 VAddr 0x007f07afc88000
remote address: LID 0x08 QPN 0x042e PSN 0xeed6ba RKey 0x23bf00 VAddr 0x007f07afc98000
remote address: LID 0x08 QPN 0x042f PSN 0x64937d RKey 0x23bf00 VAddr 0x007f07afca8000
remote address: LID 0x08 QPN 0x0430 PSN 0x18c313 RKey 0x23bf00 VAddr 0x007f07afcb8000
remote address: LID 0x08 QPN 0x0431 PSN 0x354e1 RKey 0x23bf00 VAddr 0x007f07afcc8000
remote address: LID 0x08 QPN 0x0432 PSN 0xabc483 RKey 0x23bf00 VAddr 0x007f07afcd8000
remote address: LID 0x08 QPN 0x0433 PSN 0x49d43d RKey 0x23bf00 VAddr 0x007f07afce8000
remote address: LID 0x08 QPN 0x0434 PSN 0x5023ed RKey 0x23bf00 VAddr 0x007f07afcf8000
remote address: LID 0x08 QPN 0x0435 PSN 0xa27ce3 RKey 0x23bf00 VAddr 0x007f07afd08000
remote address: LID 0x08 QPN 0x0436 PSN 0x420cf3 RKey 0x23bf00 VAddr 0x007f07afd18000
remote address: LID 0x08 QPN 0x0437 PSN 0xb2f9fa RKey 0x23bf00 VAddr 0x007f07afd28000
remote address: LID 0x08 QPN 0x0438 PSN 0x9cbd84 RKey 0x23bf00 VAddr 0x007f07afd38000
remote address: LID 0x08 QPN 0x0439 PSN 0x7d3eea RKey 0x23bf00 VAddr 0x007f07afd48000
remote address: LID 0x08 QPN 0x043a PSN 0xd2d239 RKey 0x23bf00 VAddr 0x007f07afd58000
remote address: LID 0x08 QPN 0x043b PSN 0x8e274b RKey 0x23bf00 VAddr 0x007f07afd68000
remote address: LID 0x08 QPN 0x043c PSN 0x37211d RKey 0x23bf00 VAddr 0x007f07afd78000
remote address: LID 0x08 QPN 0x043d PSN 0x5a692b RKey 0x23bf00 VAddr 0x007f07afd88000
remote address: LID 0x08 QPN 0x043e PSN 0xd0271a RKey 0x23bf00 VAddr 0x007f07afd98000
remote address: LID 0x08 QPN 0x043f PSN 0x2c2a7 RKey 0x23bf00 VAddr 0x007f07afda8000
remote address: LID 0x08 QPN 0x0440 PSN 0xec7006 RKey 0x23bf00 VAddr 0x007f07afdb8000
remote address: LID 0x08 QPN 0x0441 PSN 0x7076da RKey 0x23bf00 VAddr 0x007f07afdc8000
remote address: LID 0x08 QPN 0x0442 PSN 0x977dba RKey 0x23bf00 VAddr 0x007f07afdd8000
remote address: LID 0x08 QPN 0x0443 PSN 0xf41e6b RKey 0x23bf00 VAddr 0x007f07afde8000
remote address: LID 0x08 QPN 0x0444 PSN 0x89b06e RKey 0x23bf00 VAddr 0x007f07afdf8000
remote address: LID 0x08 QPN 0x0445 PSN 0x4c8cfc RKey 0x23bf00 VAddr 0x007f07afe08000
---------------------------------------------------------------------------------------
#bytes #iterations BW peak[Gb/sec] BW average[Gb/sec] MsgRate[Mpps]
65536 2253009 0.00 196.88 0.375525
---------------------------------------------------------------------------------------
Authorized users only. All activities may be monitored and reported.
WARNING: BW peak won't be measured in this run.
---------------------------------------------------------------------------------------
RDMA_Write BW Test
Dual-port : OFF Device : mlx5_2
Number of qps : 32 Transport type : IB
Connection type : RC Using SRQ : OFF
PCIe relax order: ON Lock-free : OFF
ibv_wr* API : ON Using DDP : OFF
TX depth : 128
CQ Moderation : 1
Mtu : 4096[B]
Link type : IB
Max inline data : 0[B]
rdma_cm QPs : OFF
Data ex. method : Ethernet
---------------------------------------------------------------------------------------
local address: LID 0x16 QPN 0x0663 PSN 0x68ceab RKey 0x23bf00 VAddr 0x007fe377346000
local address: LID 0x16 QPN 0x0664 PSN 0x2f7df0 RKey 0x23bf00 VAddr 0x007fe377356000
local address: LID 0x16 QPN 0x0665 PSN 0x994d44 RKey 0x23bf00 VAddr 0x007fe377366000
local address: LID 0x16 QPN 0x0666 PSN 0x112a0c RKey 0x23bf00 VAddr 0x007fe377376000
local address: LID 0x16 QPN 0x0667 PSN 0xdd866 RKey 0x23bf00 VAddr 0x007fe377386000
local address: LID 0x16 QPN 0x0668 PSN 0x7aa99a RKey 0x23bf00 VAddr 0x007fe377396000
local address: LID 0x16 QPN 0x0669 PSN 0x5e0bb RKey 0x23bf00 VAddr 0x007fe3773a6000
local address: LID 0x16 QPN 0x066a PSN 0x1b7a62 RKey 0x23bf00 VAddr 0x007fe3773b6000
local address: LID 0x16 QPN 0x066b PSN 0x578e28 RKey 0x23bf00 VAddr 0x007fe3773c6000
local address: LID 0x16 QPN 0x066c PSN 0x2f8153 RKey 0x23bf00 VAddr 0x007fe3773d6000
local address: LID 0x16 QPN 0x066d PSN 0x764b31 RKey 0x23bf00 VAddr 0x007fe3773e6000
local address: LID 0x16 QPN 0x066e PSN 0xc93da7 RKey 0x23bf00 VAddr 0x007fe3773f6000
local address: LID 0x16 QPN 0x066f PSN 0x99c4d1 RKey 0x23bf00 VAddr 0x007fe377406000
local address: LID 0x16 QPN 0x0670 PSN 0xce0973 RKey 0x23bf00 VAddr 0x007fe377416000
local address: LID 0x16 QPN 0x0671 PSN 0x314feb RKey 0x23bf00 VAddr 0x007fe377426000
local address: LID 0x16 QPN 0x0672 PSN 0x306c09 RKey 0x23bf00 VAddr 0x007fe377436000
local address: LID 0x16 QPN 0x0673 PSN 0x950421 RKey 0x23bf00 VAddr 0x007fe377446000
local address: LID 0x16 QPN 0x0674 PSN 0x818c90 RKey 0x23bf00 VAddr 0x007fe377456000
local address: LID 0x16 QPN 0x0675 PSN 0x8beb62 RKey 0x23bf00 VAddr 0x007fe377466000
local address: LID 0x16 QPN 0x0676 PSN 0x313a70 RKey 0x23bf00 VAddr 0x007fe377476000
local address: LID 0x16 QPN 0x0677 PSN 0xf74e47 RKey 0x23bf00 VAddr 0x007fe377486000
local address: LID 0x16 QPN 0x0678 PSN 0x738d41 RKey 0x23bf00 VAddr 0x007fe377496000
local address: LID 0x16 QPN 0x0679 PSN 0x468edb RKey 0x23bf00 VAddr 0x007fe3774a6000
local address: LID 0x16 QPN 0x067a PSN 0xacd711 RKey 0x23bf00 VAddr 0x007fe3774b6000
local address: LID 0x16 QPN 0x067b PSN 0xad9608 RKey 0x23bf00 VAddr 0x007fe3774c6000
local address: LID 0x16 QPN 0x067c PSN 0x5cd1fd RKey 0x23bf00 VAddr 0x007fe3774d6000
local address: LID 0x16 QPN 0x067d PSN 0x543ba4 RKey 0x23bf00 VAddr 0x007fe3774e6000
local address: LID 0x16 QPN 0x067e PSN 0x3a1d20 RKey 0x23bf00 VAddr 0x007fe3774f6000
local address: LID 0x16 QPN 0x067f PSN 0x5e2d88 RKey 0x23bf00 VAddr 0x007fe377506000
local address: LID 0x16 QPN 0x0680 PSN 0x680d21 RKey 0x23bf00 VAddr 0x007fe377516000
local address: LID 0x16 QPN 0x0681 PSN 0x25d7ec RKey 0x23bf00 VAddr 0x007fe377526000
local address: LID 0x16 QPN 0x0682 PSN 0x6c91a2 RKey 0x23bf00 VAddr 0x007fe377536000
remote address: LID 0x04 QPN 0x067a PSN 0x505636 RKey 0x23bf00 VAddr 0x007f5fcf9ed000
remote address: LID 0x04 QPN 0x067b PSN 0xaf161f RKey 0x23bf00 VAddr 0x007f5fcf9fd000
remote address: LID 0x04 QPN 0x067c PSN 0xfb5347 RKey 0x23bf00 VAddr 0x007f5fcfa0d000
remote address: LID 0x04 QPN 0x067d PSN 0xf86b53 RKey 0x23bf00 VAddr 0x007f5fcfa1d000
remote address: LID 0x04 QPN 0x067e PSN 0x9e6da1 RKey 0x23bf00 VAddr 0x007f5fcfa2d000
remote address: LID 0x04 QPN 0x067f PSN 0x8135b9 RKey 0x23bf00 VAddr 0x007f5fcfa3d000
remote address: LID 0x04 QPN 0x0680 PSN 0x4763ee RKey 0x23bf00 VAddr 0x007f5fcfa4d000
remote address: LID 0x04 QPN 0x0681 PSN 0xe42919 RKey 0x23bf00 VAddr 0x007f5fcfa5d000
remote address: LID 0x04 QPN 0x0682 PSN 0x765c13 RKey 0x23bf00 VAddr 0x007f5fcfa6d000
remote address: LID 0x04 QPN 0x0683 PSN 0xf25062 RKey 0x23bf00 VAddr 0x007f5fcfa7d000
remote address: LID 0x04 QPN 0x0684 PSN 0x43ee94 RKey 0x23bf00 VAddr 0x007f5fcfa8d000
remote address: LID 0x04 QPN 0x0685 PSN 0x66c0ce RKey 0x23bf00 VAddr 0x007f5fcfa9d000
remote address: LID 0x04 QPN 0x0686 PSN 0x73a66c RKey 0x23bf00 VAddr 0x007f5fcfaad000
remote address: LID 0x04 QPN 0x0687 PSN 0x285a72 RKey 0x23bf00 VAddr 0x007f5fcfabd000
remote address: LID 0x04 QPN 0x0688 PSN 0x7ee67e RKey 0x23bf00 VAddr 0x007f5fcfacd000
remote address: LID 0x04 QPN 0x0689 PSN 0x59aa0 RKey 0x23bf00 VAddr 0x007f5fcfadd000
remote address: LID 0x04 QPN 0x068a PSN 0x69846c RKey 0x23bf00 VAddr 0x007f5fcfaed000
remote address: LID 0x04 QPN 0x068b PSN 0x638e7f RKey 0x23bf00 VAddr 0x007f5fcfafd000
remote address: LID 0x04 QPN 0x068c PSN 0xd77825 RKey 0x23bf00 VAddr 0x007f5fcfb0d000
remote address: LID 0x04 QPN 0x068d PSN 0x975b77 RKey 0x23bf00 VAddr 0x007f5fcfb1d000
remote address: LID 0x04 QPN 0x068e PSN 0x93a842 RKey 0x23bf00 VAddr 0x007f5fcfb2d000
remote address: LID 0x04 QPN 0x068f PSN 0x415f20 RKey 0x23bf00 VAddr 0x007f5fcfb3d000
remote address: LID 0x04 QPN 0x0690 PSN 0xb44ce RKey 0x23bf00 VAddr 0x007f5fcfb4d000
remote address: LID 0x04 QPN 0x0691 PSN 0xeaa188 RKey 0x23bf00 VAddr 0x007f5fcfb5d000
remote address: LID 0x04 QPN 0x0692 PSN 0x97b4b3 RKey 0x23bf00 VAddr 0x007f5fcfb6d000
remote address: LID 0x04 QPN 0x0693 PSN 0x3d82cc RKey 0x23bf00 VAddr 0x007f5fcfb7d000
remote address: LID 0x04 QPN 0x0694 PSN 0xad7dc7 RKey 0x23bf00 VAddr 0x007f5fcfb8d000
remote address: LID 0x04 QPN 0x0695 PSN 0xeab807 RKey 0x23bf00 VAddr 0x007f5fcfb9d000
remote address: LID 0x04 QPN 0x0696 PSN 0xafabe3 RKey 0x23bf00 VAddr 0x007f5fcfbad000
remote address: LID 0x04 QPN 0x0697 PSN 0x849be0 RKey 0x23bf00 VAddr 0x007f5fcfbbd000
remote address: LID 0x04 QPN 0x0698 PSN 0xa2393f RKey 0x23bf00 VAddr 0x007f5fcfbcd000
remote address: LID 0x04 QPN 0x0699 PSN 0x5693f9 RKey 0x23bf00 VAddr 0x007f5fcfbdd000
---------------------------------------------------------------------------------------
#bytes #iterations BW peak[Gb/sec] BW average[Gb/sec] MsgRate[Mpps]
65536 2252872 0.00 196.87 0.375503
---------------------------------------------------------------------------------------
Authorized users only. All activities may be monitored and reported.
WARNING: BW peak won't be measured in this run.
---------------------------------------------------------------------------------------
RDMA_Write BW Test
Dual-port : OFF Device : mlx5_3
Number of qps : 32 Transport type : IB
Connection type : RC Using SRQ : OFF
PCIe relax order: ON Lock-free : OFF
ibv_wr* API : ON Using DDP : OFF
TX depth : 128
CQ Moderation : 1
Mtu : 4096[B]
Link type : IB
Max inline data : 0[B]
rdma_cm QPs : OFF
Data ex. method : Ethernet
---------------------------------------------------------------------------------------
local address: LID 0x19 QPN 0x02fd PSN 0xc85979 RKey 0x1fff00 VAddr 0x007fa31c814000
local address: LID 0x19 QPN 0x02fe PSN 0x4386f RKey 0x1fff00 VAddr 0x007fa31c824000
local address: LID 0x19 QPN 0x02ff PSN 0x45428d RKey 0x1fff00 VAddr 0x007fa31c834000
local address: LID 0x19 QPN 0x0300 PSN 0x6aa358 RKey 0x1fff00 VAddr 0x007fa31c844000
local address: LID 0x19 QPN 0x0301 PSN 0xba528b RKey 0x1fff00 VAddr 0x007fa31c854000
local address: LID 0x19 QPN 0x0302 PSN 0x3a5c91 RKey 0x1fff00 VAddr 0x007fa31c864000
local address: LID 0x19 QPN 0x0303 PSN 0x99711c RKey 0x1fff00 VAddr 0x007fa31c874000
local address: LID 0x19 QPN 0x0304 PSN 0x898ce5 RKey 0x1fff00 VAddr 0x007fa31c884000
local address: LID 0x19 QPN 0x0305 PSN 0x119525 RKey 0x1fff00 VAddr 0x007fa31c894000
local address: LID 0x19 QPN 0x0306 PSN 0x5e3c43 RKey 0x1fff00 VAddr 0x007fa31c8a4000
local address: LID 0x19 QPN 0x0307 PSN 0x19102b RKey 0x1fff00 VAddr 0x007fa31c8b4000
local address: LID 0x19 QPN 0x0308 PSN 0x1144e2 RKey 0x1fff00 VAddr 0x007fa31c8c4000
local address: LID 0x19 QPN 0x0309 PSN 0x9e4e26 RKey 0x1fff00 VAddr 0x007fa31c8d4000
local address: LID 0x19 QPN 0x030a PSN 0xf153db RKey 0x1fff00 VAddr 0x007fa31c8e4000
local address: LID 0x19 QPN 0x030b PSN 0x7afafd RKey 0x1fff00 VAddr 0x007fa31c8f4000
local address: LID 0x19 QPN 0x030c PSN 0x61fb7d RKey 0x1fff00 VAddr 0x007fa31c904000
local address: LID 0x19 QPN 0x030d PSN 0xadd4e RKey 0x1fff00 VAddr 0x007fa31c914000
local address: LID 0x19 QPN 0x030e PSN 0xbfe5f0 RKey 0x1fff00 VAddr 0x007fa31c924000
local address: LID 0x19 QPN 0x030f PSN 0x6dc60b RKey 0x1fff00 VAddr 0x007fa31c934000
local address: LID 0x19 QPN 0x0310 PSN 0x119d9c RKey 0x1fff00 VAddr 0x007fa31c944000
local address: LID 0x19 QPN 0x0311 PSN 0xb49ccd RKey 0x1fff00 VAddr 0x007fa31c954000
local address: LID 0x19 QPN 0x0312 PSN 0xabed18 RKey 0x1fff00 VAddr 0x007fa31c964000
local address: LID 0x19 QPN 0x0313 PSN 0xcfa9c RKey 0x1fff00 VAddr 0x007fa31c974000
local address: LID 0x19 QPN 0x0314 PSN 0x5a9174 RKey 0x1fff00 VAddr 0x007fa31c984000
local address: LID 0x19 QPN 0x0315 PSN 0xd55765 RKey 0x1fff00 VAddr 0x007fa31c994000
local address: LID 0x19 QPN 0x0316 PSN 0x3627cc RKey 0x1fff00 VAddr 0x007fa31c9a4000
local address: LID 0x19 QPN 0x0317 PSN 0x4031fd RKey 0x1fff00 VAddr 0x007fa31c9b4000
local address: LID 0x19 QPN 0x0318 PSN 0x886a3b RKey 0x1fff00 VAddr 0x007fa31c9c4000
local address: LID 0x19 QPN 0x0319 PSN 0x55b73e RKey 0x1fff00 VAddr 0x007fa31c9d4000
local address: LID 0x19 QPN 0x031a PSN 0xd8c068 RKey 0x1fff00 VAddr 0x007fa31c9e4000
local address: LID 0x19 QPN 0x031b PSN 0x1e6a5e RKey 0x1fff00 VAddr 0x007fa31c9f4000
local address: LID 0x19 QPN 0x031c PSN 0x76e4f5 RKey 0x1fff00 VAddr 0x007fa31ca04000
remote address: LID 0x02 QPN 0x031b PSN 0xd389d6 RKey 0x1fff00 VAddr 0x007fb173994000
remote address: LID 0x02 QPN 0x031c PSN 0xf75e08 RKey 0x1fff00 VAddr 0x007fb1739a4000
remote address: LID 0x02 QPN 0x031d PSN 0x9fbab2 RKey 0x1fff00 VAddr 0x007fb1739b4000
remote address: LID 0x02 QPN 0x031e PSN 0xfd0919 RKey 0x1fff00 VAddr 0x007fb1739c4000
remote address: LID 0x02 QPN 0x031f PSN 0x670bb8 RKey 0x1fff00 VAddr 0x007fb1739d4000
remote address: LID 0x02 QPN 0x0320 PSN 0x9fa2ba RKey 0x1fff00 VAddr 0x007fb1739e4000
remote address: LID 0x02 QPN 0x0321 PSN 0x8d2691 RKey 0x1fff00 VAddr 0x007fb1739f4000
remote address: LID 0x02 QPN 0x0322 PSN 0x30edb6 RKey 0x1fff00 VAddr 0x007fb173a04000
remote address: LID 0x02 QPN 0x0323 PSN 0xfd9422 RKey 0x1fff00 VAddr 0x007fb173a14000
remote address: LID 0x02 QPN 0x0324 PSN 0x2d1bfc RKey 0x1fff00 VAddr 0x007fb173a24000
remote address: LID 0x02 QPN 0x0325 PSN 0xba87f0 RKey 0x1fff00 VAddr 0x007fb173a34000
remote address: LID 0x02 QPN 0x0326 PSN 0x841c3 RKey 0x1fff00 VAddr 0x007fb173a44000
remote address: LID 0x02 QPN 0x0327 PSN 0x661ff3 RKey 0x1fff00 VAddr 0x007fb173a54000
remote address: LID 0x02 QPN 0x0328 PSN 0x7fd624 RKey 0x1fff00 VAddr 0x007fb173a64000
remote address: LID 0x02 QPN 0x0329 PSN 0x820a12 RKey 0x1fff00 VAddr 0x007fb173a74000
remote address: LID 0x02 QPN 0x032a PSN 0x4c456e RKey 0x1fff00 VAddr 0x007fb173a84000
remote address: LID 0x02 QPN 0x032b PSN 0x66deeb RKey 0x1fff00 VAddr 0x007fb173a94000
remote address: LID 0x02 QPN 0x032c PSN 0x1ba3c9 RKey 0x1fff00 VAddr 0x007fb173aa4000
remote address: LID 0x02 QPN 0x032d PSN 0x1a9170 RKey 0x1fff00 VAddr 0x007fb173ab4000
remote address: LID 0x02 QPN 0x032e PSN 0x7cf59d RKey 0x1fff00 VAddr 0x007fb173ac4000
remote address: LID 0x02 QPN 0x032f PSN 0x65fb3a RKey 0x1fff00 VAddr 0x007fb173ad4000
remote address: LID 0x02 QPN 0x0330 PSN 0x830f81 RKey 0x1fff00 VAddr 0x007fb173ae4000
remote address: LID 0x02 QPN 0x0331 PSN 0x5cf751 RKey 0x1fff00 VAddr 0x007fb173af4000
remote address: LID 0x02 QPN 0x0332 PSN 0x4fc885 RKey 0x1fff00 VAddr 0x007fb173b04000
remote address: LID 0x02 QPN 0x0333 PSN 0x630fa2 RKey 0x1fff00 VAddr 0x007fb173b14000
remote address: LID 0x02 QPN 0x0334 PSN 0x5067c5 RKey 0x1fff00 VAddr 0x007fb173b24000
remote address: LID 0x02 QPN 0x0335 PSN 0x732502 RKey 0x1fff00 VAddr 0x007fb173b34000
remote address: LID 0x02 QPN 0x0336 PSN 0x2c615c RKey 0x1fff00 VAddr 0x007fb173b44000
remote address: LID 0x02 QPN 0x0337 PSN 0x99964b RKey 0x1fff00 VAddr 0x007fb173b54000
remote address: LID 0x02 QPN 0x0338 PSN 0x2066f1 RKey 0x1fff00 VAddr 0x007fb173b64000
remote address: LID 0x02 QPN 0x0339 PSN 0x8b68b3 RKey 0x1fff00 VAddr 0x007fb173b74000
remote address: LID 0x02 QPN 0x033a PSN 0xbb8d26 RKey 0x1fff00 VAddr 0x007fb173b84000
---------------------------------------------------------------------------------------
#bytes #iterations BW peak[Gb/sec] BW average[Gb/sec] MsgRate[Mpps]
65536 2252891 0.00 196.87 0.375504
---------------------------------------------------------------------------------------
Authorized users only. All activities may be monitored and reported.
WARNING: BW peak won't be measured in this run.
---------------------------------------------------------------------------------------
RDMA_Write BW Test
Dual-port : OFF Device : mlx5_4
Number of qps : 32 Transport type : IB
Connection type : RC Using SRQ : OFF
PCIe relax order: ON Lock-free : OFF
ibv_wr* API : ON Using DDP : OFF
TX depth : 128
CQ Moderation : 1
Mtu : 4096[B]
Link type : IB
Max inline data : 0[B]
rdma_cm QPs : OFF
Data ex. method : Ethernet
---------------------------------------------------------------------------------------
local address: LID 0x15 QPN 0x04bb PSN 0xcc1f26 RKey 0x23bf00 VAddr 0x007fb144d89000
local address: LID 0x15 QPN 0x04bc PSN 0xb4d118 RKey 0x23bf00 VAddr 0x007fb144d99000
local address: LID 0x15 QPN 0x04bd PSN 0x6a1882 RKey 0x23bf00 VAddr 0x007fb144da9000
local address: LID 0x15 QPN 0x04be PSN 0x2fdaa9 RKey 0x23bf00 VAddr 0x007fb144db9000
local address: LID 0x15 QPN 0x04bf PSN 0x11a608 RKey 0x23bf00 VAddr 0x007fb144dc9000
local address: LID 0x15 QPN 0x04c0 PSN 0xa736ca RKey 0x23bf00 VAddr 0x007fb144dd9000
local address: LID 0x15 QPN 0x04c1 PSN 0x8d9161 RKey 0x23bf00 VAddr 0x007fb144de9000
local address: LID 0x15 QPN 0x04c2 PSN 0x154846 RKey 0x23bf00 VAddr 0x007fb144df9000
local address: LID 0x15 QPN 0x04c3 PSN 0x558372 RKey 0x23bf00 VAddr 0x007fb144e09000
local address: LID 0x15 QPN 0x04c4 PSN 0x5fe10c RKey 0x23bf00 VAddr 0x007fb144e19000
local address: LID 0x15 QPN 0x04c5 PSN 0x24cfc0 RKey 0x23bf00 VAddr 0x007fb144e29000
local address: LID 0x15 QPN 0x04c6 PSN 0x8db553 RKey 0x23bf00 VAddr 0x007fb144e39000
local address: LID 0x15 QPN 0x04c7 PSN 0xcbb443 RKey 0x23bf00 VAddr 0x007fb144e49000
local address: LID 0x15 QPN 0x04c8 PSN 0xbfdc34 RKey 0x23bf00 VAddr 0x007fb144e59000
local address: LID 0x15 QPN 0x04c9 PSN 0xf6fee2 RKey 0x23bf00 VAddr 0x007fb144e69000
local address: LID 0x15 QPN 0x04ca PSN 0xcb61fe RKey 0x23bf00 VAddr 0x007fb144e79000
local address: LID 0x15 QPN 0x04cb PSN 0xef683b RKey 0x23bf00 VAddr 0x007fb144e89000
local address: LID 0x15 QPN 0x04cc PSN 0x5bfad9 RKey 0x23bf00 VAddr 0x007fb144e99000
local address: LID 0x15 QPN 0x04cd PSN 0x780340 RKey 0x23bf00 VAddr 0x007fb144ea9000
local address: LID 0x15 QPN 0x04ce PSN 0x474b2d RKey 0x23bf00 VAddr 0x007fb144eb9000
local address: LID 0x15 QPN 0x04cf PSN 0x2bc98a RKey 0x23bf00 VAddr 0x007fb144ec9000
local address: LID 0x15 QPN 0x04d0 PSN 0xd7c791 RKey 0x23bf00 VAddr 0x007fb144ed9000
local address: LID 0x15 QPN 0x04d1 PSN 0x8db621 RKey 0x23bf00 VAddr 0x007fb144ee9000
local address: LID 0x15 QPN 0x04d2 PSN 0x3fe715 RKey 0x23bf00 VAddr 0x007fb144ef9000
local address: LID 0x15 QPN 0x04d3 PSN 0xd572f2 RKey 0x23bf00 VAddr 0x007fb144f09000
local address: LID 0x15 QPN 0x04d4 PSN 0xfe90d5 RKey 0x23bf00 VAddr 0x007fb144f19000
local address: LID 0x15 QPN 0x04d5 PSN 0x3f00d2 RKey 0x23bf00 VAddr 0x007fb144f29000
local address: LID 0x15 QPN 0x04d6 PSN 0x35d8ec RKey 0x23bf00 VAddr 0x007fb144f39000
local address: LID 0x15 QPN 0x04d7 PSN 0xccde9b RKey 0x23bf00 VAddr 0x007fb144f49000
local address: LID 0x15 QPN 0x04d8 PSN 0xae1101 RKey 0x23bf00 VAddr 0x007fb144f59000
local address: LID 0x15 QPN 0x04d9 PSN 0x673183 RKey 0x23bf00 VAddr 0x007fb144f69000
local address: LID 0x15 QPN 0x04da PSN 0x7aedb6 RKey 0x23bf00 VAddr 0x007fb144f79000
remote address: LID 0x03 QPN 0x04d0 PSN 0xd46c42 RKey 0x23bf00 VAddr 0x007fa408608000
remote address: LID 0x03 QPN 0x04d1 PSN 0x54ce04 RKey 0x23bf00 VAddr 0x007fa408618000
remote address: LID 0x03 QPN 0x04d2 PSN 0x54d0fe RKey 0x23bf00 VAddr 0x007fa408628000
remote address: LID 0x03 QPN 0x04d3 PSN 0x2fcf75 RKey 0x23bf00 VAddr 0x007fa408638000
remote address: LID 0x03 QPN 0x04d4 PSN 0xc28e4 RKey 0x23bf00 VAddr 0x007fa408648000
remote address: LID 0x03 QPN 0x04d5 PSN 0xb29676 RKey 0x23bf00 VAddr 0x007fa408658000
remote address: LID 0x03 QPN 0x04d6 PSN 0xe9d59d RKey 0x23bf00 VAddr 0x007fa408668000
remote address: LID 0x03 QPN 0x04d7 PSN 0xfc3dd2 RKey 0x23bf00 VAddr 0x007fa408678000
remote address: LID 0x03 QPN 0x04d8 PSN 0x57d80e RKey 0x23bf00 VAddr 0x007fa408688000
remote address: LID 0x03 QPN 0x04d9 PSN 0x320f78 RKey 0x23bf00 VAddr 0x007fa408698000
remote address: LID 0x03 QPN 0x04da PSN 0xe79bbc RKey 0x23bf00 VAddr 0x007fa4086a8000
remote address: LID 0x03 QPN 0x04db PSN 0x12f79f RKey 0x23bf00 VAddr 0x007fa4086b8000
remote address: LID 0x03 QPN 0x04dc PSN 0x29369f RKey 0x23bf00 VAddr 0x007fa4086c8000
remote address: LID 0x03 QPN 0x04dd PSN 0x7f0560 RKey 0x23bf00 VAddr 0x007fa4086d8000
remote address: LID 0x03 QPN 0x04de PSN 0xe90e9e RKey 0x23bf00 VAddr 0x007fa4086e8000
remote address: LID 0x03 QPN 0x04df PSN 0x4efd0a RKey 0x23bf00 VAddr 0x007fa4086f8000
remote address: LID 0x03 QPN 0x04e0 PSN 0x553457 RKey 0x23bf00 VAddr 0x007fa408708000
remote address: LID 0x03 QPN 0x04e1 PSN 0xe50ac5 RKey 0x23bf00 VAddr 0x007fa408718000
remote address: LID 0x03 QPN 0x04e2 PSN 0xb1d2bc RKey 0x23bf00 VAddr 0x007fa408728000
remote address: LID 0x03 QPN 0x04e3 PSN 0x9e0af9 RKey 0x23bf00 VAddr 0x007fa408738000
remote address: LID 0x03 QPN 0x04e4 PSN 0x7cbb66 RKey 0x23bf00 VAddr 0x007fa408748000
remote address: LID 0x03 QPN 0x04e5 PSN 0x6a6a3d RKey 0x23bf00 VAddr 0x007fa408758000
remote address: LID 0x03 QPN 0x04e6 PSN 0xb3815d RKey 0x23bf00 VAddr 0x007fa408768000
remote address: LID 0x03 QPN 0x04e7 PSN 0x3f57a1 RKey 0x23bf00 VAddr 0x007fa408778000
remote address: LID 0x03 QPN 0x04e8 PSN 0xc6268e RKey 0x23bf00 VAddr 0x007fa408788000
remote address: LID 0x03 QPN 0x04e9 PSN 0xa93241 RKey 0x23bf00 VAddr 0x007fa408798000
remote address: LID 0x03 QPN 0x04ea PSN 0x7cc3ce RKey 0x23bf00 VAddr 0x007fa4087a8000
remote address: LID 0x03 QPN 0x04eb PSN 0x4638 RKey 0x23bf00 VAddr 0x007fa4087b8000
remote address: LID 0x03 QPN 0x04ec PSN 0x3faff7 RKey 0x23bf00 VAddr 0x007fa4087c8000
remote address: LID 0x03 QPN 0x04ed PSN 0x79dd2d RKey 0x23bf00 VAddr 0x007fa4087d8000
remote address: LID 0x03 QPN 0x04ee PSN 0x2ca83f RKey 0x23bf00 VAddr 0x007fa4087e8000
remote address: LID 0x03 QPN 0x04ef PSN 0x8b63c2 RKey 0x23bf00 VAddr 0x007fa4087f8000
---------------------------------------------------------------------------------------
#bytes #iterations BW peak[Gb/sec] BW average[Gb/sec] MsgRate[Mpps]
65536 2252964 0.00 196.88 0.375517
---------------------------------------------------------------------------------------
Authorized users only. All activities may be monitored and reported.
WARNING: BW peak won't be measured in this run.
---------------------------------------------------------------------------------------
RDMA_Write BW Test
Dual-port : OFF Device : mlx5_7
Number of qps : 32 Transport type : IB
Connection type : RC Using SRQ : OFF
PCIe relax order: ON Lock-free : OFF
ibv_wr* API : ON Using DDP : OFF
TX depth : 128
CQ Moderation : 1
Mtu : 4096[B]
Link type : IB
Max inline data : 0[B]
rdma_cm QPs : OFF
Data ex. method : Ethernet
---------------------------------------------------------------------------------------
local address: LID 0x1d QPN 0x0321 PSN 0x7cfe18 RKey 0x1fff00 VAddr 0x007f2256697000
local address: LID 0x1d QPN 0x0322 PSN 0xdf9d59 RKey 0x1fff00 VAddr 0x007f22566a7000
local address: LID 0x1d QPN 0x0323 PSN 0x9b02f9 RKey 0x1fff00 VAddr 0x007f22566b7000
local address: LID 0x1d QPN 0x0324 PSN 0xe8261d RKey 0x1fff00 VAddr 0x007f22566c7000
local address: LID 0x1d QPN 0x0325 PSN 0xba71a3 RKey 0x1fff00 VAddr 0x007f22566d7000
local address: LID 0x1d QPN 0x0326 PSN 0xe0b693 RKey 0x1fff00 VAddr 0x007f22566e7000
local address: LID 0x1d QPN 0x0327 PSN 0xad1cc0 RKey 0x1fff00 VAddr 0x007f22566f7000
local address: LID 0x1d QPN 0x0328 PSN 0xd88683 RKey 0x1fff00 VAddr 0x007f2256707000
local address: LID 0x1d QPN 0x0329 PSN 0x275e35 RKey 0x1fff00 VAddr 0x007f2256717000
local address: LID 0x1d QPN 0x032a PSN 0x92c4dc RKey 0x1fff00 VAddr 0x007f2256727000
local address: LID 0x1d QPN 0x032b PSN 0xb32286 RKey 0x1fff00 VAddr 0x007f2256737000
local address: LID 0x1d QPN 0x032c PSN 0x834ad8 RKey 0x1fff00 VAddr 0x007f2256747000
local address: LID 0x1d QPN 0x032d PSN 0xd768ae RKey 0x1fff00 VAddr 0x007f2256757000
local address: LID 0x1d QPN 0x032e PSN 0x15c8c RKey 0x1fff00 VAddr 0x007f2256767000
local address: LID 0x1d QPN 0x032f PSN 0xc02790 RKey 0x1fff00 VAddr 0x007f2256777000
local address: LID 0x1d QPN 0x0330 PSN 0xdc7b4a RKey 0x1fff00 VAddr 0x007f2256787000
local address: LID 0x1d QPN 0x0331 PSN 0x77e8ce RKey 0x1fff00 VAddr 0x007f2256797000
local address: LID 0x1d QPN 0x0332 PSN 0xc5839 RKey 0x1fff00 VAddr 0x007f22567a7000
local address: LID 0x1d QPN 0x0333 PSN 0x6a7857 RKey 0x1fff00 VAddr 0x007f22567b7000
local address: LID 0x1d QPN 0x0334 PSN 0x735cc1 RKey 0x1fff00 VAddr 0x007f22567c7000
local address: LID 0x1d QPN 0x0335 PSN 0xa0b0c4 RKey 0x1fff00 VAddr 0x007f22567d7000
local address: LID 0x1d QPN 0x0336 PSN 0x4aca7a RKey 0x1fff00 VAddr 0x007f22567e7000
local address: LID 0x1d QPN 0x0337 PSN 0x78d620 RKey 0x1fff00 VAddr 0x007f22567f7000
local address: LID 0x1d QPN 0x0338 PSN 0xb92d72 RKey 0x1fff00 VAddr 0x007f2256807000
local address: LID 0x1d QPN 0x0339 PSN 0xf58355 RKey 0x1fff00 VAddr 0x007f2256817000
local address: LID 0x1d QPN 0x033a PSN 0x2c09c6 RKey 0x1fff00 VAddr 0x007f2256827000
local address: LID 0x1d QPN 0x033b PSN 0xf99239 RKey 0x1fff00 VAddr 0x007f2256837000
local address: LID 0x1d QPN 0x033c PSN 0xc5d891 RKey 0x1fff00 VAddr 0x007f2256847000
local address: LID 0x1d QPN 0x033d PSN 0x7082a5 RKey 0x1fff00 VAddr 0x007f2256857000
local address: LID 0x1d QPN 0x033e PSN 0x6a587a RKey 0x1fff00 VAddr 0x007f2256867000
local address: LID 0x1d QPN 0x033f PSN 0xdde2d1 RKey 0x1fff00 VAddr 0x007f2256877000
local address: LID 0x1d QPN 0x0340 PSN 0xaef323 RKey 0x1fff00 VAddr 0x007f2256887000
remote address: LID 0x06 QPN 0x0346 PSN 0x60a1df RKey 0x1fff00 VAddr 0x007fc54bd8f000
remote address: LID 0x06 QPN 0x0347 PSN 0xeeafdd RKey 0x1fff00 VAddr 0x007fc54bd9f000
remote address: LID 0x06 QPN 0x0348 PSN 0xcef063 RKey 0x1fff00 VAddr 0x007fc54bdaf000
remote address: LID 0x06 QPN 0x0349 PSN 0x7feb76 RKey 0x1fff00 VAddr 0x007fc54bdbf000
remote address: LID 0x06 QPN 0x034a PSN 0x3cfb51 RKey 0x1fff00 VAddr 0x007fc54bdcf000
remote address: LID 0x06 QPN 0x034b PSN 0x61cdf RKey 0x1fff00 VAddr 0x007fc54bddf000
remote address: LID 0x06 QPN 0x034c PSN 0x86652 RKey 0x1fff00 VAddr 0x007fc54bdef000
remote address: LID 0x06 QPN 0x034d PSN 0xde78e3 RKey 0x1fff00 VAddr 0x007fc54bdff000
remote address: LID 0x06 QPN 0x034e PSN 0x68444b RKey 0x1fff00 VAddr 0x007fc54be0f000
remote address: LID 0x06 QPN 0x034f PSN 0xaaf371 RKey 0x1fff00 VAddr 0x007fc54be1f000
remote address: LID 0x06 QPN 0x0350 PSN 0xbe62c1 RKey 0x1fff00 VAddr 0x007fc54be2f000
remote address: LID 0x06 QPN 0x0351 PSN 0xf032c0 RKey 0x1fff00 VAddr 0x007fc54be3f000
remote address: LID 0x06 QPN 0x0352 PSN 0xe709ac RKey 0x1fff00 VAddr 0x007fc54be4f000
remote address: LID 0x06 QPN 0x0353 PSN 0xeb8fe9 RKey 0x1fff00 VAddr 0x007fc54be5f000
remote address: LID 0x06 QPN 0x0354 PSN 0xe320f3 RKey 0x1fff00 VAddr 0x007fc54be6f000
remote address: LID 0x06 QPN 0x0355 PSN 0x9d293b RKey 0x1fff00 VAddr 0x007fc54be7f000
remote address: LID 0x06 QPN 0x0356 PSN 0x7e0b34 RKey 0x1fff00 VAddr 0x007fc54be8f000
remote address: LID 0x06 QPN 0x0357 PSN 0xf14de RKey 0x1fff00 VAddr 0x007fc54be9f000
remote address: LID 0x06 QPN 0x0358 PSN 0xb69561 RKey 0x1fff00 VAddr 0x007fc54beaf000
remote address: LID 0x06 QPN 0x0359 PSN 0xa1293a RKey 0x1fff00 VAddr 0x007fc54bebf000
remote address: LID 0x06 QPN 0x035a PSN 0xeb0313 RKey 0x1fff00 VAddr 0x007fc54becf000
remote address: LID 0x06 QPN 0x035b PSN 0x405ce6 RKey 0x1fff00 VAddr 0x007fc54bedf000
remote address: LID 0x06 QPN 0x035c PSN 0x9ba952 RKey 0x1fff00 VAddr 0x007fc54beef000
remote address: LID 0x06 QPN 0x035d PSN 0xda78f2 RKey 0x1fff00 VAddr 0x007fc54beff000
remote address: LID 0x06 QPN 0x035e PSN 0x6e1c0b RKey 0x1fff00 VAddr 0x007fc54bf0f000
remote address: LID 0x06 QPN 0x035f PSN 0xf7067a RKey 0x1fff00 VAddr 0x007fc54bf1f000
remote address: LID 0x06 QPN 0x0360 PSN 0xd75613 RKey 0x1fff00 VAddr 0x007fc54bf2f000
remote address: LID 0x06 QPN 0x0361 PSN 0x968b99 RKey 0x1fff00 VAddr 0x007fc54bf3f000
remote address: LID 0x06 QPN 0x0362 PSN 0xfc6044 RKey 0x1fff00 VAddr 0x007fc54bf4f000
remote address: LID 0x06 QPN 0x0363 PSN 0x321bf6 RKey 0x1fff00 VAddr 0x007fc54bf5f000
remote address: LID 0x06 QPN 0x0364 PSN 0x53f9d4 RKey 0x1fff00 VAddr 0x007fc54bf6f000
remote address: LID 0x06 QPN 0x0365 PSN 0xf0fe33 RKey 0x1fff00 VAddr 0x007fc54bf7f000
---------------------------------------------------------------------------------------
#bytes #iterations BW peak[Gb/sec] BW average[Gb/sec] MsgRate[Mpps]
65536 2253009 0.00 196.88 0.375525
---------------------------------------------------------------------------------------
Authorized users only. All activities may be monitored and reported.
WARNING: BW peak won't be measured in this run.
---------------------------------------------------------------------------------------
RDMA_Write BW Test
Dual-port : OFF Device : mlx5_8
Number of qps : 32 Transport type : IB
Connection type : RC Using SRQ : OFF
PCIe relax order: ON Lock-free : OFF
ibv_wr* API : ON Using DDP : OFF
TX depth : 128
CQ Moderation : 1
Mtu : 4096[B]
Link type : IB
Max inline data : 0[B]
rdma_cm QPs : OFF
Data ex. method : Ethernet
---------------------------------------------------------------------------------------
local address: LID 0x1e QPN 0x045f PSN 0x14a6d6 RKey 0x23bf00 VAddr 0x007fdf3eb6f000
local address: LID 0x1e QPN 0x0460 PSN 0xbeb708 RKey 0x23bf00 VAddr 0x007fdf3eb7f000
local address: LID 0x1e QPN 0x0461 PSN 0x769fb2 RKey 0x23bf00 VAddr 0x007fdf3eb8f000
local address: LID 0x1e QPN 0x0462 PSN 0x3a8a19 RKey 0x23bf00 VAddr 0x007fdf3eb9f000
local address: LID 0x1e QPN 0x0463 PSN 0x7cf8b8 RKey 0x23bf00 VAddr 0x007fdf3ebaf000
local address: LID 0x1e QPN 0x0464 PSN 0xe38bba RKey 0x23bf00 VAddr 0x007fdf3ebbf000
local address: LID 0x1e QPN 0x0465 PSN 0xcd5b91 RKey 0x23bf00 VAddr 0x007fdf3ebcf000
local address: LID 0x1e QPN 0x0466 PSN 0x257eb6 RKey 0x23bf00 VAddr 0x007fdf3ebdf000
local address: LID 0x1e QPN 0x0467 PSN 0x655122 RKey 0x23bf00 VAddr 0x007fdf3ebef000
local address: LID 0x1e QPN 0x0468 PSN 0x2694fc RKey 0x23bf00 VAddr 0x007fdf3ebff000
local address: LID 0x1e QPN 0x0469 PSN 0xa90cf0 RKey 0x23bf00 VAddr 0x007fdf3ec0f000
local address: LID 0x1e QPN 0x046a PSN 0x14e2c3 RKey 0x23bf00 VAddr 0x007fdf3ec1f000
local address: LID 0x1e QPN 0x046b PSN 0x6cacf3 RKey 0x23bf00 VAddr 0x007fdf3ec2f000
local address: LID 0x1e QPN 0x046c PSN 0xf7df24 RKey 0x23bf00 VAddr 0x007fdf3ec3f000
local address: LID 0x1e QPN 0x046d PSN 0xb3df12 RKey 0x23bf00 VAddr 0x007fdf3ec4f000
local address: LID 0x1e QPN 0x046e PSN 0xe1f66e RKey 0x23bf00 VAddr 0x007fdf3ec5f000
local address: LID 0x1e QPN 0x046f PSN 0x293beb RKey 0x23bf00 VAddr 0x007fdf3ec6f000
local address: LID 0x1e QPN 0x0470 PSN 0x6b3cc9 RKey 0x23bf00 VAddr 0x007fdf3ec7f000
local address: LID 0x1e QPN 0x0471 PSN 0x74b670 RKey 0x23bf00 VAddr 0x007fdf3ec8f000
local address: LID 0x1e QPN 0x0472 PSN 0x1cb69d RKey 0x23bf00 VAddr 0x007fdf3ec9f000
local address: LID 0x1e QPN 0x0473 PSN 0xd1283a RKey 0x23bf00 VAddr 0x007fdf3ecaf000
local address: LID 0x1e QPN 0x0474 PSN 0x933881 RKey 0x23bf00 VAddr 0x007fdf3ecbf000
local address: LID 0x1e QPN 0x0475 PSN 0x146c51 RKey 0x23bf00 VAddr 0x007fdf3eccf000
local address: LID 0x1e QPN 0x0476 PSN 0x8a9985 RKey 0x23bf00 VAddr 0x007fdf3ecdf000
local address: LID 0x1e QPN 0x0477 PSN 0x340ca2 RKey 0x23bf00 VAddr 0x007fdf3ecef000
local address: LID 0x1e QPN 0x0478 PSN 0x9a20c5 RKey 0x23bf00 VAddr 0x007fdf3ecff000
local address: LID 0x1e QPN 0x0479 PSN 0xcea02 RKey 0x23bf00 VAddr 0x007fdf3ed0f000
local address: LID 0x1e QPN 0x047a PSN 0xa3425c RKey 0x23bf00 VAddr 0x007fdf3ed1f000
local address: LID 0x1e QPN 0x047b PSN 0x5d634b RKey 0x23bf00 VAddr 0x007fdf3ed2f000
local address: LID 0x1e QPN 0x047c PSN 0xacaff1 RKey 0x23bf00 VAddr 0x007fdf3ed3f000
local address: LID 0x1e QPN 0x047d PSN 0xdc7db3 RKey 0x23bf00 VAddr 0x007fdf3ed4f000
local address: LID 0x1e QPN 0x047e PSN 0x1f7e26 RKey 0x23bf00 VAddr 0x007fdf3ed5f000
remote address: LID 0x09 QPN 0x04bc PSN 0xd3b7ba RKey 0x23bf00 VAddr 0x007fb5a749c000
remote address: LID 0x09 QPN 0x04bd PSN 0x75c01c RKey 0x23bf00 VAddr 0x007fb5a74ac000
remote address: LID 0x09 QPN 0x04be PSN 0xfd7536 RKey 0x23bf00 VAddr 0x007fb5a74bc000
remote address: LID 0x09 QPN 0x04bf PSN 0x280b4d RKey 0x23bf00 VAddr 0x007fb5a74cc000
remote address: LID 0x09 QPN 0x04c0 PSN 0xa1b3dc RKey 0x23bf00 VAddr 0x007fb5a74dc000
remote address: LID 0x09 QPN 0x04c1 PSN 0xd9920e RKey 0x23bf00 VAddr 0x007fb5a74ec000
remote address: LID 0x09 QPN 0x04c2 PSN 0xad8555 RKey 0x23bf00 VAddr 0x007fb5a74fc000
remote address: LID 0x09 QPN 0x04c3 PSN 0xcd5f2a RKey 0x23bf00 VAddr 0x007fb5a750c000
remote address: LID 0x09 QPN 0x04c4 PSN 0x781a86 RKey 0x23bf00 VAddr 0x007fb5a751c000
remote address: LID 0x09 QPN 0x04c5 PSN 0x462c90 RKey 0x23bf00 VAddr 0x007fb5a752c000
remote address: LID 0x09 QPN 0x04c6 PSN 0xbb8ef4 RKey 0x23bf00 VAddr 0x007fb5a753c000
remote address: LID 0x09 QPN 0x04c7 PSN 0x75d677 RKey 0x23bf00 VAddr 0x007fb5a754c000
remote address: LID 0x09 QPN 0x04c8 PSN 0x982897 RKey 0x23bf00 VAddr 0x007fb5a755c000
remote address: LID 0x09 QPN 0x04c9 PSN 0xc0dbf8 RKey 0x23bf00 VAddr 0x007fb5a756c000
remote address: LID 0x09 QPN 0x04ca PSN 0xddfd56 RKey 0x23bf00 VAddr 0x007fb5a757c000
remote address: LID 0x09 QPN 0x04cb PSN 0xb1f162 RKey 0x23bf00 VAddr 0x007fb5a758c000
remote address: LID 0x09 QPN 0x04cc PSN 0x1e4dcf RKey 0x23bf00 VAddr 0x007fb5a759c000
remote address: LID 0x09 QPN 0x04cd PSN 0x6b2dd RKey 0x23bf00 VAddr 0x007fb5a75ac000
remote address: LID 0x09 QPN 0x04ce PSN 0x2bf4f4 RKey 0x23bf00 VAddr 0x007fb5a75bc000
remote address: LID 0x09 QPN 0x04cf PSN 0xfcecd1 RKey 0x23bf00 VAddr 0x007fb5a75cc000
remote address: LID 0x09 QPN 0x04d0 PSN 0xeaf45e RKey 0x23bf00 VAddr 0x007fb5a75dc000
remote address: LID 0x09 QPN 0x04d1 PSN 0x277bd5 RKey 0x23bf00 VAddr 0x007fb5a75ec000
remote address: LID 0x09 QPN 0x04d2 PSN 0x228f15 RKey 0x23bf00 VAddr 0x007fb5a75fc000
remote address: LID 0x09 QPN 0x04d3 PSN 0x7b7ef9 RKey 0x23bf00 VAddr 0x007fb5a760c000
remote address: LID 0x09 QPN 0x04d4 PSN 0xdbf706 RKey 0x23bf00 VAddr 0x007fb5a761c000
remote address: LID 0x09 QPN 0x04d5 PSN 0xdec559 RKey 0x23bf00 VAddr 0x007fb5a762c000
remote address: LID 0x09 QPN 0x04d6 PSN 0x93f506 RKey 0x23bf00 VAddr 0x007fb5a763c000
remote address: LID 0x09 QPN 0x04d7 PSN 0xb88b10 RKey 0x23bf00 VAddr 0x007fb5a764c000
remote address: LID 0x09 QPN 0x04d8 PSN 0xaf0fef RKey 0x23bf00 VAddr 0x007fb5a765c000
remote address: LID 0x09 QPN 0x04d9 PSN 0xbe89c5 RKey 0x23bf00 VAddr 0x007fb5a766c000
remote address: LID 0x09 QPN 0x04da PSN 0x9ab4f7 RKey 0x23bf00 VAddr 0x007fb5a767c000
remote address: LID 0x09 QPN 0x04db PSN 0x741e1a RKey 0x23bf00 VAddr 0x007fb5a768c000
---------------------------------------------------------------------------------------
#bytes #iterations BW peak[Gb/sec] BW average[Gb/sec] MsgRate[Mpps]
65536 2252878 0.00 196.87 0.375503
---------------------------------------------------------------------------------------
Authorized users only. All activities may be monitored and reported.
WARNING: BW peak won't be measured in this run.
---------------------------------------------------------------------------------------
RDMA_Write BW Test
Dual-port : OFF Device : mlx5_9
Number of qps : 32 Transport type : IB
Connection type : RC Using SRQ : OFF
PCIe relax order: ON Lock-free : OFF
ibv_wr* API : ON Using DDP : OFF
TX depth : 128
CQ Moderation : 1
Mtu : 4096[B]
Link type : IB
Max inline data : 0[B]
rdma_cm QPs : OFF
Data ex. method : Ethernet
---------------------------------------------------------------------------------------
local address: LID 0x22 QPN 0x00bd PSN 0x6c07ab RKey 0x1fff00 VAddr 0x007f69ca478000
local address: LID 0x22 QPN 0x00be PSN 0x4e4fb9 RKey 0x1fff00 VAddr 0x007f69ca488000
local address: LID 0x22 QPN 0x00bf PSN 0xf5a90f RKey 0x1fff00 VAddr 0x007f69ca498000
local address: LID 0x22 QPN 0x00c0 PSN 0x7714b2 RKey 0x1fff00 VAddr 0x007f69ca4a8000
local address: LID 0x22 QPN 0x00c1 PSN 0xd571dd RKey 0x1fff00 VAddr 0x007f69ca4b8000
local address: LID 0x22 QPN 0x00c2 PSN 0x825e7b RKey 0x1fff00 VAddr 0x007f69ca4c8000
local address: LID 0x22 QPN 0x00c3 PSN 0xb27dbe RKey 0x1fff00 VAddr 0x007f69ca4d8000
local address: LID 0x22 QPN 0x00c4 PSN 0xe579df RKey 0x1fff00 VAddr 0x007f69ca4e8000
local address: LID 0x22 QPN 0x00c5 PSN 0x961797 RKey 0x1fff00 VAddr 0x007f69ca4f8000
local address: LID 0x22 QPN 0x00c6 PSN 0x1432cd RKey 0x1fff00 VAddr 0x007f69ca508000
local address: LID 0x22 QPN 0x00c7 PSN 0x4b04ed RKey 0x1fff00 VAddr 0x007f69ca518000
local address: LID 0x22 QPN 0x00c8 PSN 0x14c77c RKey 0x1fff00 VAddr 0x007f69ca528000
local address: LID 0x22 QPN 0x00c9 PSN 0x6b45b8 RKey 0x1fff00 VAddr 0x007f69ca538000
local address: LID 0x22 QPN 0x00ca PSN 0x3be905 RKey 0x1fff00 VAddr 0x007f69ca548000
local address: LID 0x22 QPN 0x00cb PSN 0xf839df RKey 0x1fff00 VAddr 0x007f69ca558000
local address: LID 0x22 QPN 0x00cc PSN 0x8ccdb7 RKey 0x1fff00 VAddr 0x007f69ca568000
local address: LID 0x22 QPN 0x00cd PSN 0x9e7c00 RKey 0x1fff00 VAddr 0x007f69ca578000
local address: LID 0x22 QPN 0x00ce PSN 0x4663ba RKey 0x1fff00 VAddr 0x007f69ca588000
local address: LID 0x22 QPN 0x00cf PSN 0xecd10d RKey 0x1fff00 VAddr 0x007f69ca598000
local address: LID 0x22 QPN 0x00d0 PSN 0xe51976 RKey 0x1fff00 VAddr 0x007f69ca5a8000
local address: LID 0x22 QPN 0x00d1 PSN 0xfe349f RKey 0x1fff00 VAddr 0x007f69ca5b8000
local address: LID 0x22 QPN 0x00d2 PSN 0x3d82 RKey 0x1fff00 VAddr 0x007f69ca5c8000
local address: LID 0x22 QPN 0x00d3 PSN 0xea73be RKey 0x1fff00 VAddr 0x007f69ca5d8000
local address: LID 0x22 QPN 0x00d4 PSN 0xd3b0ee RKey 0x1fff00 VAddr 0x007f69ca5e8000
local address: LID 0x22 QPN 0x00d5 PSN 0x275a57 RKey 0x1fff00 VAddr 0x007f69ca5f8000
local address: LID 0x22 QPN 0x00d6 PSN 0xded4d6 RKey 0x1fff00 VAddr 0x007f69ca608000
local address: LID 0x22 QPN 0x00d7 PSN 0xc0db3f RKey 0x1fff00 VAddr 0x007f69ca618000
local address: LID 0x22 QPN 0x00d8 PSN 0x39c755 RKey 0x1fff00 VAddr 0x007f69ca628000
local address: LID 0x22 QPN 0x00d9 PSN 0x77b750 RKey 0x1fff00 VAddr 0x007f69ca638000
local address: LID 0x22 QPN 0x00da PSN 0xfaf412 RKey 0x1fff00 VAddr 0x007f69ca648000
local address: LID 0x22 QPN 0x00db PSN 0xd125c0 RKey 0x1fff00 VAddr 0x007f69ca658000
local address: LID 0x22 QPN 0x00dc PSN 0x42b9af RKey 0x1fff00 VAddr 0x007f69ca668000
remote address: LID 0x0a QPN 0x00fd PSN 0x5018e3 RKey 0x1fff00 VAddr 0x007f15cc52f000
remote address: LID 0x0a QPN 0x00fe PSN 0x81f491 RKey 0x1fff00 VAddr 0x007f15cc53f000
remote address: LID 0x0a QPN 0x00ff PSN 0x2ce907 RKey 0x1fff00 VAddr 0x007f15cc54f000
remote address: LID 0x0a QPN 0x0100 PSN 0x16214a RKey 0x1fff00 VAddr 0x007f15cc55f000
remote address: LID 0x0a QPN 0x0101 PSN 0xfe5e95 RKey 0x1fff00 VAddr 0x007f15cc56f000
remote address: LID 0x0a QPN 0x0102 PSN 0x3c78d3 RKey 0x1fff00 VAddr 0x007f15cc57f000
remote address: LID 0x0a QPN 0x0103 PSN 0xbac536 RKey 0x1fff00 VAddr 0x007f15cc58f000
remote address: LID 0x0a QPN 0x0104 PSN 0x41b7f7 RKey 0x1fff00 VAddr 0x007f15cc59f000
remote address: LID 0x0a QPN 0x0105 PSN 0xc617cf RKey 0x1fff00 VAddr 0x007f15cc5af000
remote address: LID 0x0a QPN 0x0106 PSN 0x569aa5 RKey 0x1fff00 VAddr 0x007f15cc5bf000
remote address: LID 0x0a QPN 0x0107 PSN 0xfd4be5 RKey 0x1fff00 VAddr 0x007f15cc5cf000
remote address: LID 0x0a QPN 0x0108 PSN 0x5fcf14 RKey 0x1fff00 VAddr 0x007f15cc5df000
remote address: LID 0x0a QPN 0x0109 PSN 0x501170 RKey 0x1fff00 VAddr 0x007f15cc5ef000
remote address: LID 0x0a QPN 0x010a PSN 0x4df65d RKey 0x1fff00 VAddr 0x007f15cc5ff000
remote address: LID 0x0a QPN 0x010b PSN 0xc4f857 RKey 0x1fff00 VAddr 0x007f15cc60f000
remote address: LID 0x0a QPN 0x010c PSN 0x79b6cf RKey 0x1fff00 VAddr 0x007f15cc61f000
remote address: LID 0x0a QPN 0x010d PSN 0x94b38 RKey 0x1fff00 VAddr 0x007f15cc62f000
remote address: LID 0x0a QPN 0x010e PSN 0x8cee92 RKey 0x1fff00 VAddr 0x007f15cc63f000
remote address: LID 0x0a QPN 0x010f PSN 0xd3ff05 RKey 0x1fff00 VAddr 0x007f15cc64f000
remote address: LID 0x0a QPN 0x0110 PSN 0x407c0e RKey 0x1fff00 VAddr 0x007f15cc65f000
remote address: LID 0x0a QPN 0x0111 PSN 0x9bbf57 RKey 0x1fff00 VAddr 0x007f15cc66f000
remote address: LID 0x0a QPN 0x0112 PSN 0x559dda RKey 0x1fff00 VAddr 0x007f15cc67f000
remote address: LID 0x0a QPN 0x0113 PSN 0xf38936 RKey 0x1fff00 VAddr 0x007f15cc68f000
remote address: LID 0x0a QPN 0x0114 PSN 0x9ba506 RKey 0x1fff00 VAddr 0x007f15cc69f000
remote address: LID 0x0a QPN 0x0115 PSN 0xb7d88f RKey 0x1fff00 VAddr 0x007f15cc6af000
remote address: LID 0x0a QPN 0x0116 PSN 0x6ae2ae RKey 0x1fff00 VAddr 0x007f15cc6bf000
remote address: LID 0x0a QPN 0x0117 PSN 0xf2d037 RKey 0x1fff00 VAddr 0x007f15cc6cf000
remote address: LID 0x0a QPN 0x0118 PSN 0x35e4ed RKey 0x1fff00 VAddr 0x007f15cc6df000
remote address: LID 0x0a QPN 0x0119 PSN 0x86e108 RKey 0x1fff00 VAddr 0x007f15cc6ef000
remote address: LID 0x0a QPN 0x011a PSN 0x8b076a RKey 0x1fff00 VAddr 0x007f15cc6ff000
remote address: LID 0x0a QPN 0x011b PSN 0xaa7238 RKey 0x1fff00 VAddr 0x007f15cc70f000
remote address: LID 0x0a QPN 0x011c PSN 0x1c18c7 RKey 0x1fff00 VAddr 0x007f15cc71f000
---------------------------------------------------------------------------------------
#bytes #iterations BW peak[Gb/sec] BW average[Gb/sec] MsgRate[Mpps]
65536 2252957 0.00 196.88 0.375516
---------------------------------------------------------------------------------------
Filename, BW_Average
bandwidth_test_mlx5_10.log, 196.88
bandwidth_test_mlx5_1.log, 196.87
bandwidth_test_mlx5_2.log, 196.87
bandwidth_test_mlx5_3.log, 196.87
bandwidth_test_mlx5_4.log, 196.88
bandwidth_test_mlx5_7.log, 196.88
bandwidth_test_mlx5_8.log, 196.87
bandwidth_test_mlx5_9.log, 196.88
Authorized users only. All activities may be monitored and reported.
WARNING: BW peak won't be measured in this run.
---------------------------------------------------------------------------------------
RDMA_Write BW Test
Dual-port : OFF Device : mlx5_1
Number of qps : 32 Transport type : IB
Connection type : RC Using SRQ : OFF
PCIe relax order: ON Lock-free : OFF
ibv_wr* API : ON Using DDP : OFF
TX depth : 128
CQ Moderation : 1
Mtu : 4096[B]
Link type : IB
Max inline data : 0[B]
rdma_cm QPs : OFF
Data ex. method : Ethernet
---------------------------------------------------------------------------------------
local address: LID 0x17 QPN 0x0107 PSN 0x8ef529 RKey 0x1fff00 VAddr 0x007fa478aed000
local address: LID 0x17 QPN 0x0108 PSN 0x2b1596 RKey 0x1fff00 VAddr 0x007fa478afd000
local address: LID 0x17 QPN 0x0109 PSN 0x02f2 RKey 0x1fff00 VAddr 0x007fa478b0d000
local address: LID 0x17 QPN 0x010a PSN 0x6ed922 RKey 0x1fff00 VAddr 0x007fa478b1d000
local address: LID 0x17 QPN 0x010b PSN 0x8728c4 RKey 0x1fff00 VAddr 0x007fa478b2d000
local address: LID 0x17 QPN 0x010c PSN 0xfe55a0 RKey 0x1fff00 VAddr 0x007fa478b3d000
local address: LID 0x17 QPN 0x010d PSN 0x2b8349 RKey 0x1fff00 VAddr 0x007fa478b4d000
local address: LID 0x17 QPN 0x010e PSN 0x1544d8 RKey 0x1fff00 VAddr 0x007fa478b5d000
local address: LID 0x17 QPN 0x010f PSN 0x60c666 RKey 0x1fff00 VAddr 0x007fa478b6d000
local address: LID 0x17 QPN 0x0110 PSN 0xcc27b9 RKey 0x1fff00 VAddr 0x007fa478b7d000
local address: LID 0x17 QPN 0x0111 PSN 0xb0c89f RKey 0x1fff00 VAddr 0x007fa478b8d000
local address: LID 0x17 QPN 0x0112 PSN 0xc9797d RKey 0x1fff00 VAddr 0x007fa478b9d000
local address: LID 0x17 QPN 0x0113 PSN 0xbd82ef RKey 0x1fff00 VAddr 0x007fa478bad000
local address: LID 0x17 QPN 0x0114 PSN 0x7cf039 RKey 0x1fff00 VAddr 0x007fa478bbd000
local address: LID 0x17 QPN 0x0115 PSN 0x877639 RKey 0x1fff00 VAddr 0x007fa478bcd000
local address: LID 0x17 QPN 0x0116 PSN 0x30cf3f RKey 0x1fff00 VAddr 0x007fa478bdd000
local address: LID 0x17 QPN 0x0117 PSN 0xa9c61f RKey 0x1fff00 VAddr 0x007fa478bed000
local address: LID 0x17 QPN 0x0118 PSN 0xca59b6 RKey 0x1fff00 VAddr 0x007fa478bfd000
local address: LID 0x17 QPN 0x0119 PSN 0xe36890 RKey 0x1fff00 VAddr 0x007fa478c0d000
local address: LID 0x17 QPN 0x011a PSN 0x50db06 RKey 0x1fff00 VAddr 0x007fa478c1d000
local address: LID 0x17 QPN 0x011b PSN 0xfd7225 RKey 0x1fff00 VAddr 0x007fa478c2d000
local address: LID 0x17 QPN 0x011c PSN 0xf246c7 RKey 0x1fff00 VAddr 0x007fa478c3d000
local address: LID 0x17 QPN 0x011d PSN 0x71f0e9 RKey 0x1fff00 VAddr 0x007fa478c4d000
local address: LID 0x17 QPN 0x011e PSN 0x262b07 RKey 0x1fff00 VAddr 0x007fa478c5d000
local address: LID 0x17 QPN 0x011f PSN 0x8d59c6 RKey 0x1fff00 VAddr 0x007fa478c6d000
local address: LID 0x17 QPN 0x0120 PSN 0xa7dde3 RKey 0x1fff00 VAddr 0x007fa478c7d000
local address: LID 0x17 QPN 0x0121 PSN 0xf092 RKey 0x1fff00 VAddr 0x007fa478c8d000
local address: LID 0x17 QPN 0x0122 PSN 0xb8fa76 RKey 0x1fff00 VAddr 0x007fa478c9d000
local address: LID 0x17 QPN 0x0123 PSN 0x85af26 RKey 0x1fff00 VAddr 0x007fa478cad000
local address: LID 0x17 QPN 0x0124 PSN 0x563167 RKey 0x1fff00 VAddr 0x007fa478cbd000
local address: LID 0x17 QPN 0x0125 PSN 0xaa2dba RKey 0x1fff00 VAddr 0x007fa478ccd000
local address: LID 0x17 QPN 0x0126 PSN 0xc42e58 RKey 0x1fff00 VAddr 0x007fa478cdd000
remote address: LID 0x01 QPN 0x056d PSN 0x2e14e1 RKey 0x1fff00 VAddr 0x007effa42a9000
remote address: LID 0x01 QPN 0x056e PSN 0x9473b7 RKey 0x1fff00 VAddr 0x007effa42b9000
remote address: LID 0x01 QPN 0x056f PSN 0x513035 RKey 0x1fff00 VAddr 0x007effa42c9000
remote address: LID 0x01 QPN 0x0570 PSN 0xe3c3e0 RKey 0x1fff00 VAddr 0x007effa42d9000
remote address: LID 0x01 QPN 0x0571 PSN 0xe75c73 RKey 0x1fff00 VAddr 0x007effa42e9000
remote address: LID 0x01 QPN 0x0572 PSN 0x2e0459 RKey 0x1fff00 VAddr 0x007effa42f9000
remote address: LID 0x01 QPN 0x0573 PSN 0x759144 RKey 0x1fff00 VAddr 0x007effa4309000
remote address: LID 0x01 QPN 0x0574 PSN 0x72ded RKey 0x1fff00 VAddr 0x007effa4319000
remote address: LID 0x01 QPN 0x0575 PSN 0x9c558d RKey 0x1fff00 VAddr 0x007effa4329000
remote address: LID 0x01 QPN 0x0576 PSN 0x2f988b RKey 0x1fff00 VAddr 0x007effa4339000
remote address: LID 0x01 QPN 0x0577 PSN 0x860ad3 RKey 0x1fff00 VAddr 0x007effa4349000
remote address: LID 0x01 QPN 0x0578 PSN 0x8aee6a RKey 0x1fff00 VAddr 0x007effa4359000
remote address: LID 0x01 QPN 0x0579 PSN 0x1bad0e RKey 0x1fff00 VAddr 0x007effa4369000
remote address: LID 0x01 QPN 0x057a PSN 0x772ca3 RKey 0x1fff00 VAddr 0x007effa4379000
remote address: LID 0x01 QPN 0x057b PSN 0x9bf825 RKey 0x1fff00 VAddr 0x007effa4389000
remote address: LID 0x01 QPN 0x057c PSN 0xbfb585 RKey 0x1fff00 VAddr 0x007effa4399000
remote address: LID 0x01 QPN 0x057d PSN 0x7642b6 RKey 0x1fff00 VAddr 0x007effa43a9000
remote address: LID 0x01 QPN 0x057e PSN 0x758338 RKey 0x1fff00 VAddr 0x007effa43b9000
remote address: LID 0x01 QPN 0x057f PSN 0x706db3 RKey 0x1fff00 VAddr 0x007effa43c9000
remote address: LID 0x01 QPN 0x0580 PSN 0xb3f024 RKey 0x1fff00 VAddr 0x007effa43d9000
remote address: LID 0x01 QPN 0x0581 PSN 0x57f0b5 RKey 0x1fff00 VAddr 0x007effa43e9000
remote address: LID 0x01 QPN 0x0582 PSN 0x7916e0 RKey 0x1fff00 VAddr 0x007effa43f9000
remote address: LID 0x01 QPN 0x0583 PSN 0x5174c4 RKey 0x1fff00 VAddr 0x007effa4409000
remote address: LID 0x01 QPN 0x0584 PSN 0x22847c RKey 0x1fff00 VAddr 0x007effa4419000
remote address: LID 0x01 QPN 0x0585 PSN 0xb101cd RKey 0x1fff00 VAddr 0x007effa4429000
remote address: LID 0x01 QPN 0x0586 PSN 0xb72614 RKey 0x1fff00 VAddr 0x007effa4439000
remote address: LID 0x01 QPN 0x0587 PSN 0x126a5 RKey 0x1fff00 VAddr 0x007effa4449000
remote address: LID 0x01 QPN 0x0588 PSN 0x5f85c3 RKey 0x1fff00 VAddr 0x007effa4459000
remote address: LID 0x01 QPN 0x0589 PSN 0x8a026 RKey 0x1fff00 VAddr 0x007effa4469000
remote address: LID 0x01 QPN 0x058a PSN 0x265b30 RKey 0x1fff00 VAddr 0x007effa4479000
remote address: LID 0x01 QPN 0x058b PSN 0x990186 RKey 0x1fff00 VAddr 0x007effa4489000
remote address: LID 0x01 QPN 0x058c PSN 0x5730fd RKey 0x1fff00 VAddr 0x007effa4499000
---------------------------------------------------------------------------------------
#bytes #iterations BW peak[Gb/sec] BW average[Gb/sec] MsgRate[Mpps]
65536 2252859 0.00 196.87 0.375503
---------------------------------------------------------------------------------------
Authorized users only. All activities may be monitored and reported.
WARNING: BW peak won't be measured in this run.
---------------------------------------------------------------------------------------
RDMA_Write BW Test
Dual-port : OFF Device : mlx5_10
Number of qps : 32 Transport type : IB
Connection type : RC Using SRQ : OFF
PCIe relax order: ON Lock-free : OFF
ibv_wr* API : ON Using DDP : OFF
TX depth : 128
CQ Moderation : 1
Mtu : 4096[B]
Link type : IB
Max inline data : 0[B]
rdma_cm QPs : OFF
Data ex. method : Ethernet
---------------------------------------------------------------------------------------
local address: LID 0x21 QPN 0x01e7 PSN 0xa83cd4 RKey 0x23bf00 VAddr 0x007f9ed2ca5000
local address: LID 0x21 QPN 0x01e8 PSN 0x7fc82e RKey 0x23bf00 VAddr 0x007f9ed2cb5000
local address: LID 0x21 QPN 0x01e9 PSN 0x1b10e0 RKey 0x23bf00 VAddr 0x007f9ed2cc5000
local address: LID 0x21 QPN 0x01ea PSN 0x560eaf RKey 0x23bf00 VAddr 0x007f9ed2cd5000
local address: LID 0x21 QPN 0x01eb PSN 0x9b3096 RKey 0x23bf00 VAddr 0x007f9ed2ce5000
local address: LID 0x21 QPN 0x01ec PSN 0x9ac940 RKey 0x23bf00 VAddr 0x007f9ed2cf5000
local address: LID 0x21 QPN 0x01ed PSN 0xa0f19f RKey 0x23bf00 VAddr 0x007f9ed2d05000
local address: LID 0x21 QPN 0x01ee PSN 0xf4f6ac RKey 0x23bf00 VAddr 0x007f9ed2d15000
local address: LID 0x21 QPN 0x01ef PSN 0x4a68e0 RKey 0x23bf00 VAddr 0x007f9ed2d25000
local address: LID 0x21 QPN 0x01f0 PSN 0x2e64e2 RKey 0x23bf00 VAddr 0x007f9ed2d35000
local address: LID 0x21 QPN 0x01f1 PSN 0xcd35de RKey 0x23bf00 VAddr 0x007f9ed2d45000
local address: LID 0x21 QPN 0x01f2 PSN 0xa82419 RKey 0x23bf00 VAddr 0x007f9ed2d55000
local address: LID 0x21 QPN 0x01f3 PSN 0x1ac291 RKey 0x23bf00 VAddr 0x007f9ed2d65000
local address: LID 0x21 QPN 0x01f4 PSN 0x2b076a RKey 0x23bf00 VAddr 0x007f9ed2d75000
local address: LID 0x21 QPN 0x01f5 PSN 0x32e8e0 RKey 0x23bf00 VAddr 0x007f9ed2d85000
local address: LID 0x21 QPN 0x01f6 PSN 0xb03724 RKey 0x23bf00 VAddr 0x007f9ed2d95000
local address: LID 0x21 QPN 0x01f7 PSN 0xe64d69 RKey 0x23bf00 VAddr 0x007f9ed2da5000
local address: LID 0x21 QPN 0x01f8 PSN 0xcae36f RKey 0x23bf00 VAddr 0x007f9ed2db5000
local address: LID 0x21 QPN 0x01f9 PSN 0xefcf1e RKey 0x23bf00 VAddr 0x007f9ed2dc5000
local address: LID 0x21 QPN 0x01fa PSN 0x1a8cb3 RKey 0x23bf00 VAddr 0x007f9ed2dd5000
local address: LID 0x21 QPN 0x01fb PSN 0x851398 RKey 0x23bf00 VAddr 0x007f9ed2de5000
local address: LID 0x21 QPN 0x01fc PSN 0x4ce387 RKey 0x23bf00 VAddr 0x007f9ed2df5000
local address: LID 0x21 QPN 0x01fd PSN 0x51a1df RKey 0x23bf00 VAddr 0x007f9ed2e05000
local address: LID 0x21 QPN 0x01fe PSN 0x9ffafb RKey 0x23bf00 VAddr 0x007f9ed2e15000
local address: LID 0x21 QPN 0x01ff PSN 0xa68fe0 RKey 0x23bf00 VAddr 0x007f9ed2e25000
local address: LID 0x21 QPN 0x0200 PSN 0x6db62b RKey 0x23bf00 VAddr 0x007f9ed2e35000
local address: LID 0x21 QPN 0x0201 PSN 0x652a70 RKey 0x23bf00 VAddr 0x007f9ed2e45000
local address: LID 0x21 QPN 0x0202 PSN 0x818532 RKey 0x23bf00 VAddr 0x007f9ed2e55000
local address: LID 0x21 QPN 0x0203 PSN 0x541c69 RKey 0x23bf00 VAddr 0x007f9ed2e65000
local address: LID 0x21 QPN 0x0204 PSN 0xb275b7 RKey 0x23bf00 VAddr 0x007f9ed2e75000
local address: LID 0x21 QPN 0x0205 PSN 0x899701 RKey 0x23bf00 VAddr 0x007f9ed2e85000
local address: LID 0x21 QPN 0x0206 PSN 0x77585c RKey 0x23bf00 VAddr 0x007f9ed2e95000
remote address: LID 0x08 QPN 0x0446 PSN 0x55e448 RKey 0x23bf00 VAddr 0x007fe9edf3f000
remote address: LID 0x08 QPN 0x0447 PSN 0xd24c92 RKey 0x23bf00 VAddr 0x007fe9edf4f000
remote address: LID 0x08 QPN 0x0448 PSN 0x5f4774 RKey 0x23bf00 VAddr 0x007fe9edf5f000
remote address: LID 0x08 QPN 0x0449 PSN 0xda43b3 RKey 0x23bf00 VAddr 0x007fe9edf6f000
remote address: LID 0x08 QPN 0x044a PSN 0x375b4a RKey 0x23bf00 VAddr 0x007fe9edf7f000
remote address: LID 0x08 QPN 0x044b PSN 0x66afe4 RKey 0x23bf00 VAddr 0x007fe9edf8f000
remote address: LID 0x08 QPN 0x044c PSN 0xd97d73 RKey 0x23bf00 VAddr 0x007fe9edf9f000
remote address: LID 0x08 QPN 0x044d PSN 0x18f7f0 RKey 0x23bf00 VAddr 0x007fe9edfaf000
remote address: LID 0x08 QPN 0x044e PSN 0x720ad4 RKey 0x23bf00 VAddr 0x007fe9edfbf000
remote address: LID 0x08 QPN 0x044f PSN 0x7f91c6 RKey 0x23bf00 VAddr 0x007fe9edfcf000
remote address: LID 0x08 QPN 0x0450 PSN 0xe22af2 RKey 0x23bf00 VAddr 0x007fe9edfdf000
remote address: LID 0x08 QPN 0x0451 PSN 0x34759d RKey 0x23bf00 VAddr 0x007fe9edfef000
remote address: LID 0x08 QPN 0x0452 PSN 0xc60fc5 RKey 0x23bf00 VAddr 0x007fe9edfff000
remote address: LID 0x08 QPN 0x0453 PSN 0x679e8e RKey 0x23bf00 VAddr 0x007fe9ee00f000
remote address: LID 0x08 QPN 0x0454 PSN 0xf99b34 RKey 0x23bf00 VAddr 0x007fe9ee01f000
remote address: LID 0x08 QPN 0x0455 PSN 0xf19ce8 RKey 0x23bf00 VAddr 0x007fe9ee02f000
remote address: LID 0x08 QPN 0x0456 PSN 0xdcb9dd RKey 0x23bf00 VAddr 0x007fe9ee03f000
remote address: LID 0x08 QPN 0x0457 PSN 0x1748d3 RKey 0x23bf00 VAddr 0x007fe9ee04f000
remote address: LID 0x08 QPN 0x0458 PSN 0xbed2b2 RKey 0x23bf00 VAddr 0x007fe9ee05f000
remote address: LID 0x08 QPN 0x0459 PSN 0xe60ab7 RKey 0x23bf00 VAddr 0x007fe9ee06f000
remote address: LID 0x08 QPN 0x045a PSN 0x11534c RKey 0x23bf00 VAddr 0x007fe9ee07f000
remote address: LID 0x08 QPN 0x045b PSN 0x2fbb2b RKey 0x23bf00 VAddr 0x007fe9ee08f000
remote address: LID 0x08 QPN 0x045c PSN 0xd4cab3 RKey 0x23bf00 VAddr 0x007fe9ee09f000
remote address: LID 0x08 QPN 0x045d PSN 0x96d53f RKey 0x23bf00 VAddr 0x007fe9ee0af000
remote address: LID 0x08 QPN 0x045e PSN 0x8a96d4 RKey 0x23bf00 VAddr 0x007fe9ee0bf000
remote address: LID 0x08 QPN 0x045f PSN 0xb3e40f RKey 0x23bf00 VAddr 0x007fe9ee0cf000
remote address: LID 0x08 QPN 0x0460 PSN 0xb18c84 RKey 0x23bf00 VAddr 0x007fe9ee0df000
remote address: LID 0x08 QPN 0x0461 PSN 0x953fb6 RKey 0x23bf00 VAddr 0x007fe9ee0ef000
remote address: LID 0x08 QPN 0x0462 PSN 0xfd1e9d RKey 0x23bf00 VAddr 0x007fe9ee0ff000
remote address: LID 0x08 QPN 0x0463 PSN 0x931ddb RKey 0x23bf00 VAddr 0x007fe9ee10f000
remote address: LID 0x08 QPN 0x0464 PSN 0x718655 RKey 0x23bf00 VAddr 0x007fe9ee11f000
remote address: LID 0x08 QPN 0x0465 PSN 0xadb720 RKey 0x23bf00 VAddr 0x007fe9ee12f000
---------------------------------------------------------------------------------------
#bytes #iterations BW peak[Gb/sec] BW average[Gb/sec] MsgRate[Mpps]
65536 2252869 0.00 196.87 0.375504
---------------------------------------------------------------------------------------
Authorized users only. All activities may be monitored and reported.
WARNING: BW peak won't be measured in this run.
---------------------------------------------------------------------------------------
RDMA_Write BW Test
Dual-port : OFF Device : mlx5_2
Number of qps : 32 Transport type : IB
Connection type : RC Using SRQ : OFF
PCIe relax order: ON Lock-free : OFF
ibv_wr* API : ON Using DDP : OFF
TX depth : 128
CQ Moderation : 1
Mtu : 4096[B]
Link type : IB
Max inline data : 0[B]
rdma_cm QPs : OFF
Data ex. method : Ethernet
---------------------------------------------------------------------------------------
local address: LID 0x1a QPN 0x0207 PSN 0x7bfc0a RKey 0x23bf00 VAddr 0x007faed1529000
local address: LID 0x1a QPN 0x0208 PSN 0x3ab62c RKey 0x23bf00 VAddr 0x007faed1539000
local address: LID 0x1a QPN 0x0209 PSN 0xac9a06 RKey 0x23bf00 VAddr 0x007faed1549000
local address: LID 0x1a QPN 0x020a PSN 0x8d97dd RKey 0x23bf00 VAddr 0x007faed1559000
local address: LID 0x1a QPN 0x020b PSN 0xe7ed2c RKey 0x23bf00 VAddr 0x007faed1569000
local address: LID 0x1a QPN 0x020c PSN 0xfdd91e RKey 0x23bf00 VAddr 0x007faed1579000
local address: LID 0x1a QPN 0x020d PSN 0xb82725 RKey 0x23bf00 VAddr 0x007faed1589000
local address: LID 0x1a QPN 0x020e PSN 0x7524ba RKey 0x23bf00 VAddr 0x007faed1599000
local address: LID 0x1a QPN 0x020f PSN 0x2698d6 RKey 0x23bf00 VAddr 0x007faed15a9000
local address: LID 0x1a QPN 0x0210 PSN 0xcdd4a0 RKey 0x23bf00 VAddr 0x007faed15b9000
local address: LID 0x1a QPN 0x0211 PSN 0x3c7dc4 RKey 0x23bf00 VAddr 0x007faed15c9000
local address: LID 0x1a QPN 0x0212 PSN 0xaa6507 RKey 0x23bf00 VAddr 0x007faed15d9000
local address: LID 0x1a QPN 0x0213 PSN 0xce3be7 RKey 0x23bf00 VAddr 0x007faed15e9000
local address: LID 0x1a QPN 0x0214 PSN 0xe0f508 RKey 0x23bf00 VAddr 0x007faed15f9000
local address: LID 0x1a QPN 0x0215 PSN 0xcd0926 RKey 0x23bf00 VAddr 0x007faed1609000
local address: LID 0x1a QPN 0x0216 PSN 0xd6d8f2 RKey 0x23bf00 VAddr 0x007faed1619000
local address: LID 0x1a QPN 0x0217 PSN 0xa0461f RKey 0x23bf00 VAddr 0x007faed1629000
local address: LID 0x1a QPN 0x0218 PSN 0x354ced RKey 0x23bf00 VAddr 0x007faed1639000
local address: LID 0x1a QPN 0x0219 PSN 0x2dedc4 RKey 0x23bf00 VAddr 0x007faed1649000
local address: LID 0x1a QPN 0x021a PSN 0x1ebd61 RKey 0x23bf00 VAddr 0x007faed1659000
local address: LID 0x1a QPN 0x021b PSN 0x7221ae RKey 0x23bf00 VAddr 0x007faed1669000
local address: LID 0x1a QPN 0x021c PSN 0x2ba6e5 RKey 0x23bf00 VAddr 0x007faed1679000
local address: LID 0x1a QPN 0x021d PSN 0x5944e5 RKey 0x23bf00 VAddr 0x007faed1689000
local address: LID 0x1a QPN 0x021e PSN 0xdfc889 RKey 0x23bf00 VAddr 0x007faed1699000
local address: LID 0x1a QPN 0x021f PSN 0x66a956 RKey 0x23bf00 VAddr 0x007faed16a9000
local address: LID 0x1a QPN 0x0220 PSN 0xe09169 RKey 0x23bf00 VAddr 0x007faed16b9000
local address: LID 0x1a QPN 0x0221 PSN 0x6e37d6 RKey 0x23bf00 VAddr 0x007faed16c9000
local address: LID 0x1a QPN 0x0222 PSN 0x6ddda0 RKey 0x23bf00 VAddr 0x007faed16d9000
local address: LID 0x1a QPN 0x0223 PSN 0xd0973f RKey 0x23bf00 VAddr 0x007faed16e9000
local address: LID 0x1a QPN 0x0224 PSN 0x5706d5 RKey 0x23bf00 VAddr 0x007faed16f9000
local address: LID 0x1a QPN 0x0225 PSN 0xa454c7 RKey 0x23bf00 VAddr 0x007faed1709000
local address: LID 0x1a QPN 0x0226 PSN 0xe209aa RKey 0x23bf00 VAddr 0x007faed1719000
remote address: LID 0x04 QPN 0x069a PSN 0x2088fc RKey 0x23bf00 VAddr 0x007f6fa2b54000
remote address: LID 0x04 QPN 0x069b PSN 0x42536 RKey 0x23bf00 VAddr 0x007f6fa2b64000
remote address: LID 0x04 QPN 0x069c PSN 0x6bdd48 RKey 0x23bf00 VAddr 0x007f6fa2b74000
remote address: LID 0x04 QPN 0x069d PSN 0x4286f7 RKey 0x23bf00 VAddr 0x007f6fa2b84000
remote address: LID 0x04 QPN 0x069e PSN 0xbb173e RKey 0x23bf00 VAddr 0x007f6fa2b94000
remote address: LID 0x04 QPN 0x069f PSN 0x4aeec8 RKey 0x23bf00 VAddr 0x007f6fa2ba4000
remote address: LID 0x04 QPN 0x06a0 PSN 0xb91c87 RKey 0x23bf00 VAddr 0x007f6fa2bb4000
remote address: LID 0x04 QPN 0x06a1 PSN 0xabab74 RKey 0x23bf00 VAddr 0x007f6fa2bc4000
remote address: LID 0x04 QPN 0x06a2 PSN 0xe11208 RKey 0x23bf00 VAddr 0x007f6fa2bd4000
remote address: LID 0x04 QPN 0x06a3 PSN 0x2e5aea RKey 0x23bf00 VAddr 0x007f6fa2be4000
remote address: LID 0x04 QPN 0x06a4 PSN 0x342746 RKey 0x23bf00 VAddr 0x007f6fa2bf4000
remote address: LID 0x04 QPN 0x06a5 PSN 0x405d61 RKey 0x23bf00 VAddr 0x007f6fa2c04000
remote address: LID 0x04 QPN 0x06a6 PSN 0xc1d639 RKey 0x23bf00 VAddr 0x007f6fa2c14000
remote address: LID 0x04 QPN 0x06a7 PSN 0xd755f2 RKey 0x23bf00 VAddr 0x007f6fa2c24000
remote address: LID 0x04 QPN 0x06a8 PSN 0x7e88c8 RKey 0x23bf00 VAddr 0x007f6fa2c34000
remote address: LID 0x04 QPN 0x06a9 PSN 0x6dbcec RKey 0x23bf00 VAddr 0x007f6fa2c44000
remote address: LID 0x04 QPN 0x06aa PSN 0x29f391 RKey 0x23bf00 VAddr 0x007f6fa2c54000
remote address: LID 0x04 QPN 0x06ab PSN 0xc09277 RKey 0x23bf00 VAddr 0x007f6fa2c64000
remote address: LID 0x04 QPN 0x06ac PSN 0x2c8586 RKey 0x23bf00 VAddr 0x007f6fa2c74000
remote address: LID 0x04 QPN 0x06ad PSN 0xb5a6fb RKey 0x23bf00 VAddr 0x007f6fa2c84000
remote address: LID 0x04 QPN 0x06ae PSN 0x8bf440 RKey 0x23bf00 VAddr 0x007f6fa2c94000
remote address: LID 0x04 QPN 0x06af PSN 0xf17b0f RKey 0x23bf00 VAddr 0x007f6fa2ca4000
remote address: LID 0x04 QPN 0x06b0 PSN 0xea56c7 RKey 0x23bf00 VAddr 0x007f6fa2cb4000
remote address: LID 0x04 QPN 0x06b1 PSN 0xd71c3 RKey 0x23bf00 VAddr 0x007f6fa2cc4000
remote address: LID 0x04 QPN 0x06b2 PSN 0x59d308 RKey 0x23bf00 VAddr 0x007f6fa2cd4000
remote address: LID 0x04 QPN 0x06b3 PSN 0xf73e33 RKey 0x23bf00 VAddr 0x007f6fa2ce4000
remote address: LID 0x04 QPN 0x06b4 PSN 0x8b45d8 RKey 0x23bf00 VAddr 0x007f6fa2cf4000
remote address: LID 0x04 QPN 0x06b5 PSN 0x3aa07a RKey 0x23bf00 VAddr 0x007f6fa2d04000
remote address: LID 0x04 QPN 0x06b6 PSN 0x76a11 RKey 0x23bf00 VAddr 0x007f6fa2d14000
remote address: LID 0x04 QPN 0x06b7 PSN 0xaf763f RKey 0x23bf00 VAddr 0x007f6fa2d24000
remote address: LID 0x04 QPN 0x06b8 PSN 0x1d00e9 RKey 0x23bf00 VAddr 0x007f6fa2d34000
remote address: LID 0x04 QPN 0x06b9 PSN 0x41e024 RKey 0x23bf00 VAddr 0x007f6fa2d44000
---------------------------------------------------------------------------------------
#bytes #iterations BW peak[Gb/sec] BW average[Gb/sec] MsgRate[Mpps]
65536 2253015 0.00 196.89 0.375529
---------------------------------------------------------------------------------------
Authorized users only. All activities may be monitored and reported.
WARNING: BW peak won't be measured in this run.
---------------------------------------------------------------------------------------
RDMA_Write BW Test
Dual-port : OFF Device : mlx5_3
Number of qps : 32 Transport type : IB
Connection type : RC Using SRQ : OFF
PCIe relax order: ON Lock-free : OFF
ibv_wr* API : ON Using DDP : OFF
TX depth : 128
CQ Moderation : 1
Mtu : 4096[B]
Link type : IB
Max inline data : 0[B]
rdma_cm QPs : OFF
Data ex. method : Ethernet
---------------------------------------------------------------------------------------
local address: LID 0x14 QPN 0x0107 PSN 0x1fd5f2 RKey 0x1fff00 VAddr 0x007fd9c6953000
local address: LID 0x14 QPN 0x0108 PSN 0xa4edf4 RKey 0x1fff00 VAddr 0x007fd9c6963000
local address: LID 0x14 QPN 0x0109 PSN 0x640a2e RKey 0x1fff00 VAddr 0x007fd9c6973000
local address: LID 0x14 QPN 0x010a PSN 0x4c48e5 RKey 0x1fff00 VAddr 0x007fd9c6983000
local address: LID 0x14 QPN 0x010b PSN 0x867d94 RKey 0x1fff00 VAddr 0x007fd9c6993000
local address: LID 0x14 QPN 0x010c PSN 0x1ec566 RKey 0x1fff00 VAddr 0x007fd9c69a3000
local address: LID 0x14 QPN 0x010d PSN 0x6571cd RKey 0x1fff00 VAddr 0x007fd9c69b3000
local address: LID 0x14 QPN 0x010e PSN 0x30de42 RKey 0x1fff00 VAddr 0x007fd9c69c3000
local address: LID 0x14 QPN 0x010f PSN 0x24c7be RKey 0x1fff00 VAddr 0x007fd9c69d3000
local address: LID 0x14 QPN 0x0110 PSN 0xc3d68 RKey 0x1fff00 VAddr 0x007fd9c69e3000
local address: LID 0x14 QPN 0x0111 PSN 0x52caec RKey 0x1fff00 VAddr 0x007fd9c69f3000
local address: LID 0x14 QPN 0x0112 PSN 0x5b2f0f RKey 0x1fff00 VAddr 0x007fd9c6a03000
local address: LID 0x14 QPN 0x0113 PSN 0xf7714f RKey 0x1fff00 VAddr 0x007fd9c6a13000
local address: LID 0x14 QPN 0x0114 PSN 0x482250 RKey 0x1fff00 VAddr 0x007fd9c6a23000
local address: LID 0x14 QPN 0x0115 PSN 0xca00ce RKey 0x1fff00 VAddr 0x007fd9c6a33000
local address: LID 0x14 QPN 0x0116 PSN 0xed3b7a RKey 0x1fff00 VAddr 0x007fd9c6a43000
local address: LID 0x14 QPN 0x0117 PSN 0xe6a07 RKey 0x1fff00 VAddr 0x007fd9c6a53000
local address: LID 0x14 QPN 0x0118 PSN 0x3d06b5 RKey 0x1fff00 VAddr 0x007fd9c6a63000
local address: LID 0x14 QPN 0x0119 PSN 0xc1b7ec RKey 0x1fff00 VAddr 0x007fd9c6a73000
local address: LID 0x14 QPN 0x011a PSN 0x8bc069 RKey 0x1fff00 VAddr 0x007fd9c6a83000
local address: LID 0x14 QPN 0x011b PSN 0xf59c16 RKey 0x1fff00 VAddr 0x007fd9c6a93000
local address: LID 0x14 QPN 0x011c PSN 0x352d RKey 0x1fff00 VAddr 0x007fd9c6aa3000
local address: LID 0x14 QPN 0x011d PSN 0xe898d RKey 0x1fff00 VAddr 0x007fd9c6ab3000
local address: LID 0x14 QPN 0x011e PSN 0x9cf411 RKey 0x1fff00 VAddr 0x007fd9c6ac3000
local address: LID 0x14 QPN 0x011f PSN 0x6e623e RKey 0x1fff00 VAddr 0x007fd9c6ad3000
local address: LID 0x14 QPN 0x0120 PSN 0x2abc31 RKey 0x1fff00 VAddr 0x007fd9c6ae3000
local address: LID 0x14 QPN 0x0121 PSN 0xd21efe RKey 0x1fff00 VAddr 0x007fd9c6af3000
local address: LID 0x14 QPN 0x0122 PSN 0x8539a8 RKey 0x1fff00 VAddr 0x007fd9c6b03000
local address: LID 0x14 QPN 0x0123 PSN 0xd1f6a7 RKey 0x1fff00 VAddr 0x007fd9c6b13000
local address: LID 0x14 QPN 0x0124 PSN 0x84161d RKey 0x1fff00 VAddr 0x007fd9c6b23000
local address: LID 0x14 QPN 0x0125 PSN 0xee866f RKey 0x1fff00 VAddr 0x007fd9c6b33000
local address: LID 0x14 QPN 0x0126 PSN 0xf61e32 RKey 0x1fff00 VAddr 0x007fd9c6b43000
remote address: LID 0x02 QPN 0x033b PSN 0x3df36e RKey 0x1fff00 VAddr 0x007fec857ba000
remote address: LID 0x02 QPN 0x033c PSN 0x44e3c0 RKey 0x1fff00 VAddr 0x007fec857ca000
remote address: LID 0x02 QPN 0x033d PSN 0x64fa0a RKey 0x1fff00 VAddr 0x007fec857da000
remote address: LID 0x02 QPN 0x033e PSN 0x21191 RKey 0x1fff00 VAddr 0x007fec857ea000
remote address: LID 0x02 QPN 0x033f PSN 0xc776d0 RKey 0x1fff00 VAddr 0x007fec857fa000
remote address: LID 0x02 QPN 0x0340 PSN 0x4cbf2 RKey 0x1fff00 VAddr 0x007fec8580a000
remote address: LID 0x02 QPN 0x0341 PSN 0x480369 RKey 0x1fff00 VAddr 0x007fec8581a000
remote address: LID 0x02 QPN 0x0342 PSN 0x4b05ae RKey 0x1fff00 VAddr 0x007fec8582a000
remote address: LID 0x02 QPN 0x0343 PSN 0x4298ba RKey 0x1fff00 VAddr 0x007fec8583a000
remote address: LID 0x02 QPN 0x0344 PSN 0xd0a0b4 RKey 0x1fff00 VAddr 0x007fec8584a000
remote address: LID 0x02 QPN 0x0345 PSN 0x375a48 RKey 0x1fff00 VAddr 0x007fec8585a000
remote address: LID 0x02 QPN 0x0346 PSN 0x48e13b RKey 0x1fff00 VAddr 0x007fec8586a000
remote address: LID 0x02 QPN 0x0347 PSN 0xcfd60b RKey 0x1fff00 VAddr 0x007fec8587a000
remote address: LID 0x02 QPN 0x0348 PSN 0x3bee5c RKey 0x1fff00 VAddr 0x007fec8588a000
remote address: LID 0x02 QPN 0x0349 PSN 0xfaa9ea RKey 0x1fff00 VAddr 0x007fec8589a000
remote address: LID 0x02 QPN 0x034a PSN 0x646466 RKey 0x1fff00 VAddr 0x007fec858aa000
remote address: LID 0x02 QPN 0x034b PSN 0x1ede83 RKey 0x1fff00 VAddr 0x007fec858ba000
remote address: LID 0x02 QPN 0x034c PSN 0x360781 RKey 0x1fff00 VAddr 0x007fec858ca000
remote address: LID 0x02 QPN 0x034d PSN 0x8e56c8 RKey 0x1fff00 VAddr 0x007fec858da000
remote address: LID 0x02 QPN 0x034e PSN 0x350c15 RKey 0x1fff00 VAddr 0x007fec858ea000
remote address: LID 0x02 QPN 0x034f PSN 0x975c52 RKey 0x1fff00 VAddr 0x007fec858fa000
remote address: LID 0x02 QPN 0x0350 PSN 0xe4f6b9 RKey 0x1fff00 VAddr 0x007fec8590a000
remote address: LID 0x02 QPN 0x0351 PSN 0x68ba29 RKey 0x1fff00 VAddr 0x007fec8591a000
remote address: LID 0x02 QPN 0x0352 PSN 0x7fce7d RKey 0x1fff00 VAddr 0x007fec8592a000
remote address: LID 0x02 QPN 0x0353 PSN 0xd26a3a RKey 0x1fff00 VAddr 0x007fec8593a000
remote address: LID 0x02 QPN 0x0354 PSN 0x3e8a7d RKey 0x1fff00 VAddr 0x007fec8594a000
remote address: LID 0x02 QPN 0x0355 PSN 0xa93d5a RKey 0x1fff00 VAddr 0x007fec8595a000
remote address: LID 0x02 QPN 0x0356 PSN 0x33ced4 RKey 0x1fff00 VAddr 0x007fec8596a000
remote address: LID 0x02 QPN 0x0357 PSN 0xbd0263 RKey 0x1fff00 VAddr 0x007fec8597a000
remote address: LID 0x02 QPN 0x0358 PSN 0x72fd29 RKey 0x1fff00 VAddr 0x007fec8598a000
remote address: LID 0x02 QPN 0x0359 PSN 0x4bae8b RKey 0x1fff00 VAddr 0x007fec8599a000
remote address: LID 0x02 QPN 0x035a PSN 0x795a1e RKey 0x1fff00 VAddr 0x007fec859aa000
---------------------------------------------------------------------------------------
#bytes #iterations BW peak[Gb/sec] BW average[Gb/sec] MsgRate[Mpps]
65536 2253000 0.00 196.88 0.375526
---------------------------------------------------------------------------------------
Authorized users only. All activities may be monitored and reported.
WARNING: BW peak won't be measured in this run.
---------------------------------------------------------------------------------------
RDMA_Write BW Test
Dual-port : OFF Device : mlx5_4
Number of qps : 32 Transport type : IB
Connection type : RC Using SRQ : OFF
PCIe relax order: ON Lock-free : OFF
ibv_wr* API : ON Using DDP : OFF
TX depth : 128
CQ Moderation : 1
Mtu : 4096[B]
Link type : IB
Max inline data : 0[B]
rdma_cm QPs : OFF
Data ex. method : Ethernet
---------------------------------------------------------------------------------------
local address: LID 0x18 QPN 0x0207 PSN 0xfb9c6 RKey 0x23bf00 VAddr 0x007f7f54bfe000
local address: LID 0x18 QPN 0x0208 PSN 0xe96738 RKey 0x23bf00 VAddr 0x007f7f54c0e000
local address: LID 0x18 QPN 0x0209 PSN 0x2ec422 RKey 0x23bf00 VAddr 0x007f7f54c1e000
local address: LID 0x18 QPN 0x020a PSN 0x9eadc9 RKey 0x23bf00 VAddr 0x007f7f54c2e000
local address: LID 0x18 QPN 0x020b PSN 0x704aa8 RKey 0x23bf00 VAddr 0x007f7f54c3e000
local address: LID 0x18 QPN 0x020c PSN 0x5b0eea RKey 0x23bf00 VAddr 0x007f7f54c4e000
local address: LID 0x18 QPN 0x020d PSN 0xcd5701 RKey 0x23bf00 VAddr 0x007f7f54c5e000
local address: LID 0x18 QPN 0x020e PSN 0x4a2d66 RKey 0x23bf00 VAddr 0x007f7f54c6e000
local address: LID 0x18 QPN 0x020f PSN 0x35d212 RKey 0x23bf00 VAddr 0x007f7f54c7e000
local address: LID 0x18 QPN 0x0210 PSN 0x51b2c RKey 0x23bf00 VAddr 0x007f7f54c8e000
local address: LID 0x18 QPN 0x0211 PSN 0x374f60 RKey 0x23bf00 VAddr 0x007f7f54c9e000
local address: LID 0x18 QPN 0x0212 PSN 0x97cc73 RKey 0x23bf00 VAddr 0x007f7f54cae000
local address: LID 0x18 QPN 0x0213 PSN 0x5e4ce3 RKey 0x23bf00 VAddr 0x007f7f54cbe000
local address: LID 0x18 QPN 0x0214 PSN 0xca9854 RKey 0x23bf00 VAddr 0x007f7f54cce000
local address: LID 0x18 QPN 0x0215 PSN 0xdd882 RKey 0x23bf00 VAddr 0x007f7f54cde000
local address: LID 0x18 QPN 0x0216 PSN 0x8bcb1e RKey 0x23bf00 VAddr 0x007f7f54cee000
local address: LID 0x18 QPN 0x0217 PSN 0xceeadb RKey 0x23bf00 VAddr 0x007f7f54cfe000
local address: LID 0x18 QPN 0x0218 PSN 0x6258f9 RKey 0x23bf00 VAddr 0x007f7f54d0e000
local address: LID 0x18 QPN 0x0219 PSN 0x3ed6e0 RKey 0x23bf00 VAddr 0x007f7f54d1e000
local address: LID 0x18 QPN 0x021a PSN 0x91264d RKey 0x23bf00 VAddr 0x007f7f54d2e000
local address: LID 0x18 QPN 0x021b PSN 0xfcd62a RKey 0x23bf00 VAddr 0x007f7f54d3e000
local address: LID 0x18 QPN 0x021c PSN 0xb1e7b1 RKey 0x23bf00 VAddr 0x007f7f54d4e000
local address: LID 0x18 QPN 0x021d PSN 0xca23c1 RKey 0x23bf00 VAddr 0x007f7f54d5e000
local address: LID 0x18 QPN 0x021e PSN 0xf85435 RKey 0x23bf00 VAddr 0x007f7f54d6e000
local address: LID 0x18 QPN 0x021f PSN 0xe6a992 RKey 0x23bf00 VAddr 0x007f7f54d7e000
local address: LID 0x18 QPN 0x0220 PSN 0xe692f5 RKey 0x23bf00 VAddr 0x007f7f54d8e000
local address: LID 0x18 QPN 0x0221 PSN 0x70a872 RKey 0x23bf00 VAddr 0x007f7f54d9e000
local address: LID 0x18 QPN 0x0222 PSN 0x73f80c RKey 0x23bf00 VAddr 0x007f7f54dae000
local address: LID 0x18 QPN 0x0223 PSN 0xb6df3b RKey 0x23bf00 VAddr 0x007f7f54dbe000
local address: LID 0x18 QPN 0x0224 PSN 0x601521 RKey 0x23bf00 VAddr 0x007f7f54dce000
local address: LID 0x18 QPN 0x0225 PSN 0x67b323 RKey 0x23bf00 VAddr 0x007f7f54dde000
local address: LID 0x18 QPN 0x0226 PSN 0xa7ded6 RKey 0x23bf00 VAddr 0x007f7f54dee000
remote address: LID 0x03 QPN 0x04f0 PSN 0xebd5b4 RKey 0x23bf00 VAddr 0x007f69ee341000
remote address: LID 0x03 QPN 0x04f1 PSN 0x211f8e RKey 0x23bf00 VAddr 0x007f69ee351000
remote address: LID 0x03 QPN 0x04f2 PSN 0xcd84c0 RKey 0x23bf00 VAddr 0x007f69ee361000
remote address: LID 0x03 QPN 0x04f3 PSN 0xeca50f RKey 0x23bf00 VAddr 0x007f69ee371000
remote address: LID 0x03 QPN 0x04f4 PSN 0x537776 RKey 0x23bf00 VAddr 0x007f69ee381000
remote address: LID 0x03 QPN 0x04f5 PSN 0x3e36a0 RKey 0x23bf00 VAddr 0x007f69ee391000
remote address: LID 0x03 QPN 0x04f6 PSN 0xfac37f RKey 0x23bf00 VAddr 0x007f69ee3a1000
remote address: LID 0x03 QPN 0x04f7 PSN 0x42930c RKey 0x23bf00 VAddr 0x007f69ee3b1000
remote address: LID 0x03 QPN 0x04f8 PSN 0x543dc0 RKey 0x23bf00 VAddr 0x007f69ee3c1000
remote address: LID 0x03 QPN 0x04f9 PSN 0x1f4842 RKey 0x23bf00 VAddr 0x007f69ee3d1000
remote address: LID 0x03 QPN 0x04fa PSN 0x2645be RKey 0x23bf00 VAddr 0x007f69ee3e1000
remote address: LID 0x03 QPN 0x04fb PSN 0x572679 RKey 0x23bf00 VAddr 0x007f69ee3f1000
remote address: LID 0x03 QPN 0x04fc PSN 0x410571 RKey 0x23bf00 VAddr 0x007f69ee401000
remote address: LID 0x03 QPN 0x04fd PSN 0xac0ca RKey 0x23bf00 VAddr 0x007f69ee411000
remote address: LID 0x03 QPN 0x04fe PSN 0x8116c0 RKey 0x23bf00 VAddr 0x007f69ee421000
remote address: LID 0x03 QPN 0x04ff PSN 0xb0ff84 RKey 0x23bf00 VAddr 0x007f69ee431000
remote address: LID 0x03 QPN 0x0500 PSN 0xc1de49 RKey 0x23bf00 VAddr 0x007f69ee441000
remote address: LID 0x03 QPN 0x0501 PSN 0xf0d2cf RKey 0x23bf00 VAddr 0x007f69ee451000
remote address: LID 0x03 QPN 0x0502 PSN 0xa6fafe RKey 0x23bf00 VAddr 0x007f69ee461000
remote address: LID 0x03 QPN 0x0503 PSN 0x37b13 RKey 0x23bf00 VAddr 0x007f69ee471000
remote address: LID 0x03 QPN 0x0504 PSN 0x5cd278 RKey 0x23bf00 VAddr 0x007f69ee481000
remote address: LID 0x03 QPN 0x0505 PSN 0x2668e7 RKey 0x23bf00 VAddr 0x007f69ee491000
remote address: LID 0x03 QPN 0x0506 PSN 0x43abbf RKey 0x23bf00 VAddr 0x007f69ee4a1000
remote address: LID 0x03 QPN 0x0507 PSN 0xd6f5b RKey 0x23bf00 VAddr 0x007f69ee4b1000
remote address: LID 0x03 QPN 0x0508 PSN 0x4f5cc0 RKey 0x23bf00 VAddr 0x007f69ee4c1000
remote address: LID 0x03 QPN 0x0509 PSN 0xde318b RKey 0x23bf00 VAddr 0x007f69ee4d1000
remote address: LID 0x03 QPN 0x050a PSN 0xa1f250 RKey 0x23bf00 VAddr 0x007f69ee4e1000
remote address: LID 0x03 QPN 0x050b PSN 0x75df92 RKey 0x23bf00 VAddr 0x007f69ee4f1000
remote address: LID 0x03 QPN 0x050c PSN 0x10d749 RKey 0x23bf00 VAddr 0x007f69ee501000
remote address: LID 0x03 QPN 0x050d PSN 0x734717 RKey 0x23bf00 VAddr 0x007f69ee511000
remote address: LID 0x03 QPN 0x050e PSN 0x3efce1 RKey 0x23bf00 VAddr 0x007f69ee521000
remote address: LID 0x03 QPN 0x050f PSN 0xbaf8bc RKey 0x23bf00 VAddr 0x007f69ee531000
---------------------------------------------------------------------------------------
#bytes #iterations BW peak[Gb/sec] BW average[Gb/sec] MsgRate[Mpps]
65536 2252869 0.00 196.87 0.375504
---------------------------------------------------------------------------------------
Authorized users only. All activities may be monitored and reported.
WARNING: BW peak won't be measured in this run.
---------------------------------------------------------------------------------------
RDMA_Write BW Test
Dual-port : OFF Device : mlx5_7
Number of qps : 32 Transport type : IB
Connection type : RC Using SRQ : OFF
PCIe relax order: ON Lock-free : OFF
ibv_wr* API : ON Using DDP : OFF
TX depth : 128
CQ Moderation : 1
Mtu : 4096[B]
Link type : IB
Max inline data : 0[B]
rdma_cm QPs : OFF
Data ex. method : Ethernet
---------------------------------------------------------------------------------------
local address: LID 0x1c QPN 0x0167 PSN 0x52578c RKey 0x1fff00 VAddr 0x007fcf93b8f000
local address: LID 0x1c QPN 0x0168 PSN 0x8e7886 RKey 0x1fff00 VAddr 0x007fcf93b9f000
local address: LID 0x1c QPN 0x0169 PSN 0xeb3658 RKey 0x1fff00 VAddr 0x007fcf93baf000
local address: LID 0x1c QPN 0x016a PSN 0x3fd2c7 RKey 0x1fff00 VAddr 0x007fcf93bbf000
local address: LID 0x1c QPN 0x016b PSN 0x713ece RKey 0x1fff00 VAddr 0x007fcf93bcf000
local address: LID 0x1c QPN 0x016c PSN 0x252718 RKey 0x1fff00 VAddr 0x007fcf93bdf000
local address: LID 0x1c QPN 0x016d PSN 0xfaf697 RKey 0x1fff00 VAddr 0x007fcf93bef000
local address: LID 0x1c QPN 0x016e PSN 0x5fe444 RKey 0x1fff00 VAddr 0x007fcf93bff000
local address: LID 0x1c QPN 0x016f PSN 0x682298 RKey 0x1fff00 VAddr 0x007fcf93c0f000
local address: LID 0x1c QPN 0x0170 PSN 0x51c83a RKey 0x1fff00 VAddr 0x007fcf93c1f000
local address: LID 0x1c QPN 0x0171 PSN 0x3f9256 RKey 0x1fff00 VAddr 0x007fcf93c2f000
local address: LID 0x1c QPN 0x0172 PSN 0xd5331 RKey 0x1fff00 VAddr 0x007fcf93c3f000
local address: LID 0x1c QPN 0x0173 PSN 0x9f5fc9 RKey 0x1fff00 VAddr 0x007fcf93c4f000
local address: LID 0x1c QPN 0x0174 PSN 0x824842 RKey 0x1fff00 VAddr 0x007fcf93c5f000
local address: LID 0x1c QPN 0x0175 PSN 0xbb94d8 RKey 0x1fff00 VAddr 0x007fcf93c6f000
local address: LID 0x1c QPN 0x0176 PSN 0x23fbc RKey 0x1fff00 VAddr 0x007fcf93c7f000
local address: LID 0x1c QPN 0x0177 PSN 0xac8621 RKey 0x1fff00 VAddr 0x007fcf93c8f000
local address: LID 0x1c QPN 0x0178 PSN 0xc659c7 RKey 0x1fff00 VAddr 0x007fcf93c9f000
local address: LID 0x1c QPN 0x0179 PSN 0x744296 RKey 0x1fff00 VAddr 0x007fcf93caf000
local address: LID 0x1c QPN 0x017a PSN 0xdd86cb RKey 0x1fff00 VAddr 0x007fcf93cbf000
local address: LID 0x1c QPN 0x017b PSN 0x5b1fd0 RKey 0x1fff00 VAddr 0x007fcf93ccf000
local address: LID 0x1c QPN 0x017c PSN 0xa675f RKey 0x1fff00 VAddr 0x007fcf93cdf000
local address: LID 0x1c QPN 0x017d PSN 0x96d4d7 RKey 0x1fff00 VAddr 0x007fcf93cef000
local address: LID 0x1c QPN 0x017e PSN 0x817e93 RKey 0x1fff00 VAddr 0x007fcf93cff000
local address: LID 0x1c QPN 0x017f PSN 0x62798 RKey 0x1fff00 VAddr 0x007fcf93d0f000
local address: LID 0x1c QPN 0x0180 PSN 0x109f83 RKey 0x1fff00 VAddr 0x007fcf93d1f000
local address: LID 0x1c QPN 0x0181 PSN 0x8794e8 RKey 0x1fff00 VAddr 0x007fcf93d2f000
local address: LID 0x1c QPN 0x0182 PSN 0x70aa4a RKey 0x1fff00 VAddr 0x007fcf93d3f000
local address: LID 0x1c QPN 0x0183 PSN 0x9a77a1 RKey 0x1fff00 VAddr 0x007fcf93d4f000
local address: LID 0x1c QPN 0x0184 PSN 0x3b9c8f RKey 0x1fff00 VAddr 0x007fcf93d5f000
local address: LID 0x1c QPN 0x0185 PSN 0xf530f9 RKey 0x1fff00 VAddr 0x007fcf93d6f000
local address: LID 0x1c QPN 0x0186 PSN 0x3cb6f4 RKey 0x1fff00 VAddr 0x007fcf93d7f000
remote address: LID 0x06 QPN 0x0366 PSN 0xd13b9 RKey 0x1fff00 VAddr 0x007f0d00f56000
remote address: LID 0x06 QPN 0x0367 PSN 0x9d05af RKey 0x1fff00 VAddr 0x007f0d00f66000
remote address: LID 0x06 QPN 0x0368 PSN 0xbc26cd RKey 0x1fff00 VAddr 0x007f0d00f76000
remote address: LID 0x06 QPN 0x0369 PSN 0x1b5298 RKey 0x1fff00 VAddr 0x007f0d00f86000
remote address: LID 0x06 QPN 0x036a PSN 0x6870cb RKey 0x1fff00 VAddr 0x007f0d00f96000
remote address: LID 0x06 QPN 0x036b PSN 0x8abdd1 RKey 0x1fff00 VAddr 0x007f0d00fa6000
remote address: LID 0x06 QPN 0x036c PSN 0x32595c RKey 0x1fff00 VAddr 0x007f0d00fb6000
remote address: LID 0x06 QPN 0x036d PSN 0x4df025 RKey 0x1fff00 VAddr 0x007f0d00fc6000
remote address: LID 0x06 QPN 0x036e PSN 0xdb5765 RKey 0x1fff00 VAddr 0x007f0d00fd6000
remote address: LID 0x06 QPN 0x036f PSN 0xcb7183 RKey 0x1fff00 VAddr 0x007f0d00fe6000
remote address: LID 0x06 QPN 0x0370 PSN 0x703c6b RKey 0x1fff00 VAddr 0x007f0d00ff6000
remote address: LID 0x06 QPN 0x0371 PSN 0xf09c22 RKey 0x1fff00 VAddr 0x007f0d01006000
remote address: LID 0x06 QPN 0x0372 PSN 0x19f466 RKey 0x1fff00 VAddr 0x007f0d01016000
remote address: LID 0x06 QPN 0x0373 PSN 0xf49d1b RKey 0x1fff00 VAddr 0x007f0d01026000
remote address: LID 0x06 QPN 0x0374 PSN 0xb0ab3d RKey 0x1fff00 VAddr 0x007f0d01036000
remote address: LID 0x06 QPN 0x0375 PSN 0x9786bd RKey 0x1fff00 VAddr 0x007f0d01046000
remote address: LID 0x06 QPN 0x0376 PSN 0xf2a78e RKey 0x1fff00 VAddr 0x007f0d01056000
remote address: LID 0x06 QPN 0x0377 PSN 0x268330 RKey 0x1fff00 VAddr 0x007f0d01066000
remote address: LID 0x06 QPN 0x0378 PSN 0x663a4b RKey 0x1fff00 VAddr 0x007f0d01076000
remote address: LID 0x06 QPN 0x0379 PSN 0x4c9cdc RKey 0x1fff00 VAddr 0x007f0d01086000
remote address: LID 0x06 QPN 0x037a PSN 0x26cb0d RKey 0x1fff00 VAddr 0x007f0d01096000
remote address: LID 0x06 QPN 0x037b PSN 0xd71e58 RKey 0x1fff00 VAddr 0x007f0d010a6000
remote address: LID 0x06 QPN 0x037c PSN 0xb072dc RKey 0x1fff00 VAddr 0x007f0d010b6000
remote address: LID 0x06 QPN 0x037d PSN 0xfe44b4 RKey 0x1fff00 VAddr 0x007f0d010c6000
remote address: LID 0x06 QPN 0x037e PSN 0x9429a5 RKey 0x1fff00 VAddr 0x007f0d010d6000
remote address: LID 0x06 QPN 0x037f PSN 0x5b2d0c RKey 0x1fff00 VAddr 0x007f0d010e6000
remote address: LID 0x06 QPN 0x0380 PSN 0xbaee3d RKey 0x1fff00 VAddr 0x007f0d010f6000
remote address: LID 0x06 QPN 0x0381 PSN 0xec117b RKey 0x1fff00 VAddr 0x007f0d01106000
remote address: LID 0x06 QPN 0x0382 PSN 0x76d7e RKey 0x1fff00 VAddr 0x007f0d01116000
remote address: LID 0x06 QPN 0x0383 PSN 0x40d9a8 RKey 0x1fff00 VAddr 0x007f0d01126000
remote address: LID 0x06 QPN 0x0384 PSN 0x20aa9e RKey 0x1fff00 VAddr 0x007f0d01136000
remote address: LID 0x06 QPN 0x0385 PSN 0x25c035 RKey 0x1fff00 VAddr 0x007f0d01146000
---------------------------------------------------------------------------------------
#bytes #iterations BW peak[Gb/sec] BW average[Gb/sec] MsgRate[Mpps]
65536 2253016 0.00 196.89 0.375529
---------------------------------------------------------------------------------------
Authorized users only. All activities may be monitored and reported.
WARNING: BW peak won't be measured in this run.
---------------------------------------------------------------------------------------
RDMA_Write BW Test
Dual-port : OFF Device : mlx5_8
Number of qps : 32 Transport type : IB
Connection type : RC Using SRQ : OFF
PCIe relax order: ON Lock-free : OFF
ibv_wr* API : ON Using DDP : OFF
TX depth : 128
CQ Moderation : 1
Mtu : 4096[B]
Link type : IB
Max inline data : 0[B]
rdma_cm QPs : OFF
Data ex. method : Ethernet
---------------------------------------------------------------------------------------
local address: LID 0x1b QPN 0x0367 PSN 0x7a1e18 RKey 0x23bf00 VAddr 0x007eff4daf0000
local address: LID 0x1b QPN 0x0368 PSN 0xefca22 RKey 0x23bf00 VAddr 0x007eff4db00000
local address: LID 0x1b QPN 0x0369 PSN 0x7d1dc4 RKey 0x23bf00 VAddr 0x007eff4db10000
local address: LID 0x1b QPN 0x036a PSN 0xda63c3 RKey 0x23bf00 VAddr 0x007eff4db20000
local address: LID 0x1b QPN 0x036b PSN 0xd3621a RKey 0x23bf00 VAddr 0x007eff4db30000
local address: LID 0x1b QPN 0x036c PSN 0xb47674 RKey 0x23bf00 VAddr 0x007eff4db40000
local address: LID 0x1b QPN 0x036d PSN 0x1c68c3 RKey 0x23bf00 VAddr 0x007eff4db50000
local address: LID 0x1b QPN 0x036e PSN 0xc10900 RKey 0x23bf00 VAddr 0x007eff4db60000
local address: LID 0x1b QPN 0x036f PSN 0x15aea4 RKey 0x23bf00 VAddr 0x007eff4db70000
local address: LID 0x1b QPN 0x0370 PSN 0x193156 RKey 0x23bf00 VAddr 0x007eff4db80000
local address: LID 0x1b QPN 0x0371 PSN 0x667b42 RKey 0x23bf00 VAddr 0x007eff4db90000
local address: LID 0x1b QPN 0x0372 PSN 0x7287ad RKey 0x23bf00 VAddr 0x007eff4dba0000
local address: LID 0x1b QPN 0x0373 PSN 0x2e2095 RKey 0x23bf00 VAddr 0x007eff4dbb0000
local address: LID 0x1b QPN 0x0374 PSN 0x91a71e RKey 0x23bf00 VAddr 0x007eff4dbc0000
local address: LID 0x1b QPN 0x0375 PSN 0x50a084 RKey 0x23bf00 VAddr 0x007eff4dbd0000
local address: LID 0x1b QPN 0x0376 PSN 0x84bff8 RKey 0x23bf00 VAddr 0x007eff4dbe0000
local address: LID 0x1b QPN 0x0377 PSN 0xc307ad RKey 0x23bf00 VAddr 0x007eff4dbf0000
local address: LID 0x1b QPN 0x0378 PSN 0xcf4a63 RKey 0x23bf00 VAddr 0x007eff4dc00000
local address: LID 0x1b QPN 0x0379 PSN 0x3edd02 RKey 0x23bf00 VAddr 0x007eff4dc10000
local address: LID 0x1b QPN 0x037a PSN 0x6e4ec7 RKey 0x23bf00 VAddr 0x007eff4dc20000
local address: LID 0x1b QPN 0x037b PSN 0xfcae1c RKey 0x23bf00 VAddr 0x007eff4dc30000
local address: LID 0x1b QPN 0x037c PSN 0xbc45bb RKey 0x23bf00 VAddr 0x007eff4dc40000
local address: LID 0x1b QPN 0x037d PSN 0xe92a03 RKey 0x23bf00 VAddr 0x007eff4dc50000
local address: LID 0x1b QPN 0x037e PSN 0xa54a4f RKey 0x23bf00 VAddr 0x007eff4dc60000
local address: LID 0x1b QPN 0x037f PSN 0x9ecea4 RKey 0x23bf00 VAddr 0x007eff4dc70000
local address: LID 0x1b QPN 0x0380 PSN 0x34879f RKey 0x23bf00 VAddr 0x007eff4dc80000
local address: LID 0x1b QPN 0x0381 PSN 0x2a90d4 RKey 0x23bf00 VAddr 0x007eff4dc90000
local address: LID 0x1b QPN 0x0382 PSN 0xbbf5c6 RKey 0x23bf00 VAddr 0x007eff4dca0000
local address: LID 0x1b QPN 0x0383 PSN 0xcb036d RKey 0x23bf00 VAddr 0x007eff4dcb0000
local address: LID 0x1b QPN 0x0384 PSN 0x906a6b RKey 0x23bf00 VAddr 0x007eff4dcc0000
local address: LID 0x1b QPN 0x0385 PSN 0xd47fa5 RKey 0x23bf00 VAddr 0x007eff4dcd0000
local address: LID 0x1b QPN 0x0386 PSN 0x8fbe30 RKey 0x23bf00 VAddr 0x007eff4dce0000
remote address: LID 0x09 QPN 0x04dc PSN 0xa5002c RKey 0x23bf00 VAddr 0x007f8efcbc5000
remote address: LID 0x09 QPN 0x04dd PSN 0x3677dd RKey 0x23bf00 VAddr 0x007f8efcbd5000
remote address: LID 0x09 QPN 0x04de PSN 0x98a52d RKey 0x23bf00 VAddr 0x007f8efcbe5000
remote address: LID 0x09 QPN 0x04df PSN 0x90ee41 RKey 0x23bf00 VAddr 0x007f8efcbf5000
remote address: LID 0x09 QPN 0x04e0 PSN 0x9800f7 RKey 0x23bf00 VAddr 0x007f8efcc05000
remote address: LID 0x09 QPN 0x04e1 PSN 0x6c3557 RKey 0x23bf00 VAddr 0x007f8efcc15000
remote address: LID 0x09 QPN 0x04e2 PSN 0xa62e34 RKey 0x23bf00 VAddr 0x007f8efcc25000
remote address: LID 0x09 QPN 0x04e3 PSN 0x832ce7 RKey 0x23bf00 VAddr 0x007f8efcc35000
remote address: LID 0x09 QPN 0x04e4 PSN 0x7e0ec9 RKey 0x23bf00 VAddr 0x007f8efcc45000
remote address: LID 0x09 QPN 0x04e5 PSN 0x90ebe0 RKey 0x23bf00 VAddr 0x007f8efcc55000
remote address: LID 0x09 QPN 0x04e6 PSN 0xa7573a RKey 0x23bf00 VAddr 0x007f8efcc65000
remote address: LID 0x09 QPN 0x04e7 PSN 0xc7737c RKey 0x23bf00 VAddr 0x007f8efcc75000
remote address: LID 0x09 QPN 0x04e8 PSN 0x900e82 RKey 0x23bf00 VAddr 0x007f8efcc85000
remote address: LID 0x09 QPN 0x04e9 PSN 0xc6fd0 RKey 0x23bf00 VAddr 0x007f8efcc95000
remote address: LID 0x09 QPN 0x04ea PSN 0x767384 RKey 0x23bf00 VAddr 0x007f8efcca5000
remote address: LID 0x09 QPN 0x04eb PSN 0xa80a2e RKey 0x23bf00 VAddr 0x007f8efccb5000
remote address: LID 0x09 QPN 0x04ec PSN 0xb497e2 RKey 0x23bf00 VAddr 0x007f8efccc5000
remote address: LID 0x09 QPN 0x04ed PSN 0x9edbbd RKey 0x23bf00 VAddr 0x007f8efccd5000
remote address: LID 0x09 QPN 0x04ee PSN 0xa50f8b RKey 0x23bf00 VAddr 0x007f8efcce5000
remote address: LID 0x09 QPN 0x04ef PSN 0x2e75e5 RKey 0x23bf00 VAddr 0x007f8efccf5000
remote address: LID 0x09 QPN 0x04f0 PSN 0x10bd18 RKey 0x23bf00 VAddr 0x007f8efcd05000
remote address: LID 0x09 QPN 0x04f1 PSN 0x83823e RKey 0x23bf00 VAddr 0x007f8efcd15000
remote address: LID 0x09 QPN 0x04f2 PSN 0x692c94 RKey 0x23bf00 VAddr 0x007f8efcd25000
remote address: LID 0x09 QPN 0x04f3 PSN 0xaa34d6 RKey 0x23bf00 VAddr 0x007f8efcd35000
remote address: LID 0x09 QPN 0x04f4 PSN 0x6980e9 RKey 0x23bf00 VAddr 0x007f8efcd45000
remote address: LID 0x09 QPN 0x04f5 PSN 0xd1f9ca RKey 0x23bf00 VAddr 0x007f8efcd55000
remote address: LID 0x09 QPN 0x04f6 PSN 0xf45bed RKey 0x23bf00 VAddr 0x007f8efcd65000
remote address: LID 0x09 QPN 0x04f7 PSN 0xb57235 RKey 0x23bf00 VAddr 0x007f8efcd75000
remote address: LID 0x09 QPN 0x04f8 PSN 0xae4579 RKey 0x23bf00 VAddr 0x007f8efcd85000
remote address: LID 0x09 QPN 0x04f9 PSN 0x30c4be RKey 0x23bf00 VAddr 0x007f8efcd95000
remote address: LID 0x09 QPN 0x04fa PSN 0x4f13c5 RKey 0x23bf00 VAddr 0x007f8efcda5000
remote address: LID 0x09 QPN 0x04fb PSN 0xcc0307 RKey 0x23bf00 VAddr 0x007f8efcdb5000
---------------------------------------------------------------------------------------
#bytes #iterations BW peak[Gb/sec] BW average[Gb/sec] MsgRate[Mpps]
65536 2253002 0.00 196.88 0.375527
---------------------------------------------------------------------------------------
Authorized users only. All activities may be monitored and reported.
WARNING: BW peak won't be measured in this run.
---------------------------------------------------------------------------------------
RDMA_Write BW Test
Dual-port : OFF Device : mlx5_9
Number of qps : 32 Transport type : IB
Connection type : RC Using SRQ : OFF
PCIe relax order: ON Lock-free : OFF
ibv_wr* API : ON Using DDP : OFF
TX depth : 128
CQ Moderation : 1
Mtu : 4096[B]
Link type : IB
Max inline data : 0[B]
rdma_cm QPs : OFF
Data ex. method : Ethernet
---------------------------------------------------------------------------------------
local address: LID 0x20 QPN 0x0107 PSN 0xc2523b RKey 0x1fff00 VAddr 0x007f3d0d579000
local address: LID 0x20 QPN 0x0108 PSN 0xc96f09 RKey 0x1fff00 VAddr 0x007f3d0d589000
local address: LID 0x20 QPN 0x0109 PSN 0x43de1f RKey 0x1fff00 VAddr 0x007f3d0d599000
local address: LID 0x20 QPN 0x010a PSN 0x300c82 RKey 0x1fff00 VAddr 0x007f3d0d5a9000
local address: LID 0x20 QPN 0x010b PSN 0xfbd56d RKey 0x1fff00 VAddr 0x007f3d0d5b9000
local address: LID 0x20 QPN 0x010c PSN 0xe22cb RKey 0x1fff00 VAddr 0x007f3d0d5c9000
local address: LID 0x20 QPN 0x010d PSN 0x54f3ce RKey 0x1fff00 VAddr 0x007f3d0d5d9000
local address: LID 0x20 QPN 0x010e PSN 0xe41eaf RKey 0x1fff00 VAddr 0x007f3d0d5e9000
local address: LID 0x20 QPN 0x010f PSN 0xd52427 RKey 0x1fff00 VAddr 0x007f3d0d5f9000
local address: LID 0x20 QPN 0x0110 PSN 0xf5ec1d RKey 0x1fff00 VAddr 0x007f3d0d609000
local address: LID 0x20 QPN 0x0111 PSN 0xa4cbfd RKey 0x1fff00 VAddr 0x007f3d0d619000
local address: LID 0x20 QPN 0x0112 PSN 0xe6e94c RKey 0x1fff00 VAddr 0x007f3d0d629000
local address: LID 0x20 QPN 0x0113 PSN 0x48b48 RKey 0x1fff00 VAddr 0x007f3d0d639000
local address: LID 0x20 QPN 0x0114 PSN 0xbde755 RKey 0x1fff00 VAddr 0x007f3d0d649000
local address: LID 0x20 QPN 0x0115 PSN 0x8d61ef RKey 0x1fff00 VAddr 0x007f3d0d659000
local address: LID 0x20 QPN 0x0116 PSN 0xcd3c87 RKey 0x1fff00 VAddr 0x007f3d0d669000
local address: LID 0x20 QPN 0x0117 PSN 0x5c8a90 RKey 0x1fff00 VAddr 0x007f3d0d679000
local address: LID 0x20 QPN 0x0118 PSN 0x7f70a RKey 0x1fff00 VAddr 0x007f3d0d689000
local address: LID 0x20 QPN 0x0119 PSN 0x726a1d RKey 0x1fff00 VAddr 0x007f3d0d699000
local address: LID 0x20 QPN 0x011a PSN 0xba546 RKey 0x1fff00 VAddr 0x007f3d0d6a9000
local address: LID 0x20 QPN 0x011b PSN 0xc49c2f RKey 0x1fff00 VAddr 0x007f3d0d6b9000
local address: LID 0x20 QPN 0x011c PSN 0x45b5d2 RKey 0x1fff00 VAddr 0x007f3d0d6c9000
local address: LID 0x20 QPN 0x011d PSN 0x568dce RKey 0x1fff00 VAddr 0x007f3d0d6d9000
local address: LID 0x20 QPN 0x011e PSN 0x529be RKey 0x1fff00 VAddr 0x007f3d0d6e9000
local address: LID 0x20 QPN 0x011f PSN 0x82aae7 RKey 0x1fff00 VAddr 0x007f3d0d6f9000
local address: LID 0x20 QPN 0x0120 PSN 0xe18226 RKey 0x1fff00 VAddr 0x007f3d0d709000
local address: LID 0x20 QPN 0x0121 PSN 0x5a864f RKey 0x1fff00 VAddr 0x007f3d0d719000
local address: LID 0x20 QPN 0x0122 PSN 0x17fd25 RKey 0x1fff00 VAddr 0x007f3d0d729000
local address: LID 0x20 QPN 0x0123 PSN 0x2d80e0 RKey 0x1fff00 VAddr 0x007f3d0d739000
local address: LID 0x20 QPN 0x0124 PSN 0x392662 RKey 0x1fff00 VAddr 0x007f3d0d749000
local address: LID 0x20 QPN 0x0125 PSN 0x4071d0 RKey 0x1fff00 VAddr 0x007f3d0d759000
local address: LID 0x20 QPN 0x0126 PSN 0xbc7c7f RKey 0x1fff00 VAddr 0x007f3d0d769000
remote address: LID 0x0a QPN 0x011d PSN 0x8ca45f RKey 0x1fff00 VAddr 0x007fdf5ecef000
remote address: LID 0x0a QPN 0x011e PSN 0xeac05d RKey 0x1fff00 VAddr 0x007fdf5ecff000
remote address: LID 0x0a QPN 0x011f PSN 0xf4f6e3 RKey 0x1fff00 VAddr 0x007fdf5ed0f000
remote address: LID 0x0a QPN 0x0120 PSN 0x87aff6 RKey 0x1fff00 VAddr 0x007fdf5ed1f000
remote address: LID 0x0a QPN 0x0121 PSN 0x16a5d1 RKey 0x1fff00 VAddr 0x007fdf5ed2f000
remote address: LID 0x0a QPN 0x0122 PSN 0xe2b55f RKey 0x1fff00 VAddr 0x007fdf5ed3f000
remote address: LID 0x0a QPN 0x0123 PSN 0xf854d2 RKey 0x1fff00 VAddr 0x007fdf5ed4f000
remote address: LID 0x0a QPN 0x0124 PSN 0x4e0563 RKey 0x1fff00 VAddr 0x007fdf5ed5f000
remote address: LID 0x0a QPN 0x0125 PSN 0x2216cb RKey 0x1fff00 VAddr 0x007fdf5ed6f000
remote address: LID 0x0a QPN 0x0126 PSN 0xe893f1 RKey 0x1fff00 VAddr 0x007fdf5ed7f000
remote address: LID 0x0a QPN 0x0127 PSN 0x2eb941 RKey 0x1fff00 VAddr 0x007fdf5ed8f000
remote address: LID 0x0a QPN 0x0128 PSN 0x7c0740 RKey 0x1fff00 VAddr 0x007fdf5ed9f000
remote address: LID 0x0a QPN 0x0129 PSN 0x5b842c RKey 0x1fff00 VAddr 0x007fdf5edaf000
remote address: LID 0x0a QPN 0x012a PSN 0x92b869 RKey 0x1fff00 VAddr 0x007fdf5edbf000
remote address: LID 0x0a QPN 0x012b PSN 0x725f73 RKey 0x1fff00 VAddr 0x007fdf5edcf000
remote address: LID 0x0a QPN 0x012c PSN 0xc1c5bb RKey 0x1fff00 VAddr 0x007fdf5eddf000
remote address: LID 0x0a QPN 0x012d PSN 0xafadb4 RKey 0x1fff00 VAddr 0x007fdf5edef000
remote address: LID 0x0a QPN 0x012e PSN 0x30455e RKey 0x1fff00 VAddr 0x007fdf5edff000
remote address: LID 0x0a QPN 0x012f PSN 0x6b3be1 RKey 0x1fff00 VAddr 0x007fdf5ee0f000
remote address: LID 0x0a QPN 0x0130 PSN 0x230dba RKey 0x1fff00 VAddr 0x007fdf5ee1f000
remote address: LID 0x0a QPN 0x0131 PSN 0x844d93 RKey 0x1fff00 VAddr 0x007fdf5ee2f000
remote address: LID 0x0a QPN 0x0132 PSN 0x741566 RKey 0x1fff00 VAddr 0x007fdf5ee3f000
remote address: LID 0x0a QPN 0x0133 PSN 0x6437d2 RKey 0x1fff00 VAddr 0x007fdf5ee4f000
remote address: LID 0x0a QPN 0x0134 PSN 0x462572 RKey 0x1fff00 VAddr 0x007fdf5ee5f000
remote address: LID 0x0a QPN 0x0135 PSN 0x418e8b RKey 0x1fff00 VAddr 0x007fdf5ee6f000
remote address: LID 0x0a QPN 0x0136 PSN 0xddc6fa RKey 0x1fff00 VAddr 0x007fdf5ee7f000
remote address: LID 0x0a QPN 0x0137 PSN 0xa4c93 RKey 0x1fff00 VAddr 0x007fdf5ee8f000
remote address: LID 0x0a QPN 0x0138 PSN 0xc08019 RKey 0x1fff00 VAddr 0x007fdf5ee9f000
remote address: LID 0x0a QPN 0x0139 PSN 0x847ac4 RKey 0x1fff00 VAddr 0x007fdf5eeaf000
remote address: LID 0x0a QPN 0x013a PSN 0xf46476 RKey 0x1fff00 VAddr 0x007fdf5eebf000
remote address: LID 0x0a QPN 0x013b PSN 0x2fd854 RKey 0x1fff00 VAddr 0x007fdf5eecf000
remote address: LID 0x0a QPN 0x013c PSN 0x75bab3 RKey 0x1fff00 VAddr 0x007fdf5eedf000
---------------------------------------------------------------------------------------
#bytes #iterations BW peak[Gb/sec] BW average[Gb/sec] MsgRate[Mpps]
65536 2253010 0.00 196.88 0.375528
---------------------------------------------------------------------------------------
Filename, BW_Average
bandwidth_test_mlx5_10.log, 196.87
bandwidth_test_mlx5_1.log, 196.87
bandwidth_test_mlx5_2.log, 196.89
bandwidth_test_mlx5_3.log, 196.88
bandwidth_test_mlx5_4.log, 196.87
bandwidth_test_mlx5_7.log, 196.89
bandwidth_test_mlx5_8.log, 196.88
bandwidth_test_mlx5_9.log, 196.88
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment