mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-11-01 07:30:17 +01:00
d6ef0e77dd
* github: add self sorted issue ticket forms [no ci] * github: consolidate BSD in bug issue ticket * github: remove contact from bug ticket template [no ci] * github: remove bios from os dropdown in bug report [no ci]
51 lines
1.7 KiB
YAML
51 lines
1.7 KiB
YAML
name: Critical Severity Bug
|
|
description: Used to report critical severity bugs in llama.cpp (e.g. Crashing, Corrupted, Dataloss)
|
|
title: "Bug: "
|
|
labels: ["bug-unconfirmed", "critical severity"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thanks for taking the time to fill out this bug report!
|
|
Please include information about your system, the steps to reproduce the bug,
|
|
and the version of llama.cpp that you are using.
|
|
If possible, please provide a minimal code example that reproduces the bug.
|
|
- type: textarea
|
|
id: what-happened
|
|
attributes:
|
|
label: What happened?
|
|
description: Also tell us, what did you expect to happen?
|
|
placeholder: Tell us what you see!
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: version
|
|
attributes:
|
|
label: Name and Version
|
|
description: Which executable and which version of our software are you running? (use `--version` to get a version string)
|
|
placeholder: |
|
|
$./main --version
|
|
version: 2999 (42b4109e)
|
|
built with cc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 for x86_64-linux-gnu
|
|
validations:
|
|
required: true
|
|
- type: dropdown
|
|
id: operating-system
|
|
attributes:
|
|
label: What operating system are you seeing the problem on?
|
|
multiple: true
|
|
options:
|
|
- Linux
|
|
- Mac
|
|
- Windows
|
|
- BSD
|
|
- Other? (Please let us know in description)
|
|
validations:
|
|
required: false
|
|
- type: textarea
|
|
id: logs
|
|
attributes:
|
|
label: Relevant log output
|
|
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
|
|
render: shell
|