Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/user-tutorial/system-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This tool is to collect the system information automatically on the tested GPU n

2. Start to collect the sys info using `sb node info --output-dir ${output-dir}` command using root privilege.

3. After the command finished, you can find the output system info json file `sys-info.json` of local node under \${output_dir}.
3. After the command finished, you can find the output system info json file `sys_info.json` of local node under \${output_dir}.

### Usage on multiple remote machines

Expand All @@ -38,7 +38,7 @@ This tool is to collect the system information automatically on the tested GPU n
sb run --get-info -f host.ini --output-dir ${output-dir} -C superbench.enable=none
```

4. After the command finished, you can find the output system info json file `sys-info.json` of each node under \${output_dir}/nodes/${node_name}.
4. After the command finished, you can find the output system info json file `sys_info.json` of each node under \${output_dir}/nodes/${node_name}.

## Parameter and Details

Expand Down
1 change: 1 addition & 0 deletions superbench/tools/system_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,7 @@ def get_nic(self):
nic_list.append(nic_info)
except Exception:
logger.exception('Error: get nic info failed')
return nic_list

def get_network(self):
"""Get network info, including nic info, ib info and ofed version.
Expand Down