From 15b86408a89d5b998409e7fbe7850e937cc837da Mon Sep 17 00:00:00 2001 From: youkaichao Date: Fri, 19 Apr 2024 12:44:51 -0700 Subject: [PATCH] [Misc] add nccl in collect env (#4211) --- .github/ISSUE_TEMPLATE/200-installation.yml | 1 + .github/ISSUE_TEMPLATE/300-usage.yml | 1 + .github/ISSUE_TEMPLATE/400-bug report.yml | 1 + .github/ISSUE_TEMPLATE/700-performance discussion.yml | 1 + collect_env.py | 2 ++ 5 files changed, 6 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/200-installation.yml b/.github/ISSUE_TEMPLATE/200-installation.yml index 4c6c96187cc6c..df41ade8c3c01 100644 --- a/.github/ISSUE_TEMPLATE/200-installation.yml +++ b/.github/ISSUE_TEMPLATE/200-installation.yml @@ -18,6 +18,7 @@ body: # For security purposes, please feel free to check the contents of collect_env.py before running it. python collect_env.py ``` + It is suggested to download and execute the latest script, as vllm might frequently update the diagnosis information needed for accurately and quickly responding to issues. value: | ```text The output of `python collect_env.py` diff --git a/.github/ISSUE_TEMPLATE/300-usage.yml b/.github/ISSUE_TEMPLATE/300-usage.yml index 88227b4b2e7b9..54763af1058f6 100644 --- a/.github/ISSUE_TEMPLATE/300-usage.yml +++ b/.github/ISSUE_TEMPLATE/300-usage.yml @@ -18,6 +18,7 @@ body: # For security purposes, please feel free to check the contents of collect_env.py before running it. python collect_env.py ``` + It is suggested to download and execute the latest script, as vllm might frequently update the diagnosis information needed for accurately and quickly responding to issues. value: | ```text The output of `python collect_env.py` diff --git a/.github/ISSUE_TEMPLATE/400-bug report.yml b/.github/ISSUE_TEMPLATE/400-bug report.yml index c87f8fddcb776..08120ad8e5a60 100644 --- a/.github/ISSUE_TEMPLATE/400-bug report.yml +++ b/.github/ISSUE_TEMPLATE/400-bug report.yml @@ -18,6 +18,7 @@ body: # For security purposes, please feel free to check the contents of collect_env.py before running it. python collect_env.py ``` + It is suggested to download and execute the latest script, as vllm might frequently update the diagnosis information needed for accurately and quickly responding to issues. value: | ```text The output of `python collect_env.py` diff --git a/.github/ISSUE_TEMPLATE/700-performance discussion.yml b/.github/ISSUE_TEMPLATE/700-performance discussion.yml index 9e8e7b4aa3530..4f8843420a94e 100644 --- a/.github/ISSUE_TEMPLATE/700-performance discussion.yml +++ b/.github/ISSUE_TEMPLATE/700-performance discussion.yml @@ -39,6 +39,7 @@ body: # For security purposes, please feel free to check the contents of collect_env.py before running it. python collect_env.py ``` + It is suggested to download and execute the latest script, as vllm might frequently update the diagnosis information needed for accurately and quickly responding to issues. value: | ```text The output of `python collect_env.py` diff --git a/collect_env.py b/collect_env.py index 8982fba024274..1ecfeb8e22e2f 100644 --- a/collect_env.py +++ b/collect_env.py @@ -63,6 +63,7 @@ "magma", "triton", "optree", + "nccl", } DEFAULT_PIP_PATTERNS = { @@ -73,6 +74,7 @@ "triton", "optree", "onnx", + "nccl", }