|
| 1 | +name: 🐛 Bug report |
| 2 | +description: Raise an issue here if you find a bug. |
| 3 | +title: "[Bug]: " |
| 4 | +labels: ["bug"] |
| 5 | + |
| 6 | +body: |
| 7 | +- type: markdown |
| 8 | + attributes: |
| 9 | + value: > |
| 10 | + #### Before submitting an issue, please make sure the issue hasn't been already addressed by searching through [the existing and past issues](https://github.com/ModelEngine-Group/unified-cache-management/issues?q=is%3Aissue%20sort%3Acreated-desc). |
| 11 | +- type: textarea |
| 12 | + attributes: |
| 13 | + label: Your current environment |
| 14 | + description: | |
| 15 | + Please run the following and paste the output below. |
| 16 | + **TODO: Add script to our project to collect the unifiedcache runtime environment, this following example comes from vllm-ascend** |
| 17 | + ```sh |
| 18 | + wget https://raw.githubusercontent.com/vllm-project/vllm-ascend/main/collect_env.py |
| 19 | + # For security purposes, please feel free to check the contents of collect_env.py before running it. |
| 20 | + python collect_env.py |
| 21 | + ``` |
| 22 | + 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. |
| 23 | + value: | |
| 24 | + <details> |
| 25 | + <summary>The output of `python collect_env.py`</summary> |
| 26 | +
|
| 27 | + ```text |
| 28 | + Your output of above commands here |
| 29 | + ``` |
| 30 | + |
| 31 | + </details> |
| 32 | + validations: |
| 33 | + required: true |
| 34 | +- type: textarea |
| 35 | + attributes: |
| 36 | + label: 🐛 Describe the bug |
| 37 | + description: | |
| 38 | + Please provide a clear and concise description of what the bug is. |
| 39 | +
|
| 40 | + If relevant, add a minimal example so that we can reproduce the error by running the code. It is very important for the snippet to be as succinct (minimal) as possible, so please take time to trim down any irrelevant code to help us debug efficiently. We are going to copy-paste your code and we expect to get the same result as you did: avoid any external data, and include the relevant imports, etc. |
| 41 | +
|
| 42 | + If the code is too long (hopefully, it isn't), feel free to put it in a public gist and link it in the issue: https://gist.github.com. |
| 43 | +
|
| 44 | + Please also paste or describe the results you observe instead of the expected results. If you observe an error, please paste the error message including the **full** traceback of the exception. It may be relevant to wrap error messages in ```` ```triple quotes blocks``` ````. |
| 45 | +
|
| 46 | + Please set the environment variable `export VLLM_LOGGING_LEVEL=DEBUG` to turn on more logging to help debugging potential issues. |
| 47 | +
|
| 48 | + If you experienced crashes or hangs, it would be helpful to run vllm with `export VLLM_TRACE_FUNCTION=1` . All the function calls in vllm will be recorded. Inspect these log files, and tell which function crashes or hangs. |
| 49 | + placeholder: | |
| 50 | + A clear and concise description of what the bug is. |
| 51 | +
|
| 52 | + ```python |
| 53 | + # Sample code to reproduce the problem |
| 54 | + ``` |
| 55 | +
|
| 56 | + ``` |
| 57 | + The error message you got, with the full traceback. |
| 58 | + ``` |
| 59 | + validations: |
| 60 | + required: true |
0 commit comments