Unverified Commit 95c9fc95 authored by Yuting Jiang's avatar Yuting Jiang Committed by GitHub
Browse files

Benchmarks: Fix Bug - Remove ib device port info in command to fix bug of ib loopback (#173)

**Description**
Remove IB device port info in command to fix bug of IB loopback.

**Major Revision**
- Remove IB device port info in command to fix bug of IB loopback 
parent f3d53c3d
......@@ -164,7 +164,7 @@ def _preprocess(self):
command += ' ' + self.__support_ib_commands[ib_command]
command += command_mode + ' -F'
command += ' --iters=' + str(self._args.iters)
command += ' -d ' + network.get_ib_devices()[self._args.ib_index]
command += ' -d ' + network.get_ib_devices()[self._args.ib_index].split(':')[0]
command += ' -p ' + str(network.get_free_port())
command += ' -x ' + str(self._args.gid_index)
self._commands.append(command)
......
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