Unverified Commit 0583862d authored by Yuting Jiang's avatar Yuting Jiang Committed by GitHub
Browse files

Benchmarks: Code Revision - fix typo in test of nccl microbenchmark. (#163)

**Description**
 fix typo in test_nccl_bw_performance.py.

**Major Revision**
-  fix typo in test_nccl_bw_performance.py.
parent 6774d7b7
...@@ -71,9 +71,9 @@ def test_nccl_bw_performance(self): ...@@ -71,9 +71,9 @@ def test_nccl_bw_performance(self):
] ]
for i in range(len(benchmark._args.operations)): for i in range(len(benchmark._args.operations)):
commnad = bin_names[i] + benchmark._commands[i].split(bin_names[i])[1] command = bin_names[i] + benchmark._commands[i].split(bin_names[i])[1]
expected_command = '{} -b 8 -e 8G -f 2 -g 8 -c 0 -n 20 -w 5'.format(bin_names[i]) expected_command = '{} -b 8 -e 8G -f 2 -g 8 -c 0 -n 20 -w 5'.format(bin_names[i])
assert (commnad == expected_command) assert (command == expected_command)
# Check results and metrics. # Check results and metrics.
# Case with no raw_output # Case with no raw_output
......
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