010-bug-compilation.yml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. name: Bug (compilation)
  2. description: Something goes wrong when trying to compile llama.cpp.
  3. title: "Compile bug: "
  4. labels: ["bug-unconfirmed", "compilation"]
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: >
  9. Thanks for taking the time to fill out this bug report!
  10. This issue template is intended for bug reports where the compilation of llama.cpp fails.
  11. Before opening an issue, please confirm that the compilation still fails with `-DGGML_CCACHE=OFF`.
  12. If the compilation succeeds with ccache disabled you should be able to permanently fix the issue
  13. by clearing `~/.cache/ccache` (on Linux).
  14. - type: textarea
  15. id: commit
  16. attributes:
  17. label: Git commit
  18. description: Which commit are you trying to compile?
  19. placeholder: |
  20. $git rev-parse HEAD
  21. 84a07a17b1b08cf2b9747c633a2372782848a27f
  22. validations:
  23. required: true
  24. - type: dropdown
  25. id: operating-system
  26. attributes:
  27. label: Which operating systems do you know to be affected?
  28. multiple: true
  29. options:
  30. - Linux
  31. - Mac
  32. - Windows
  33. - BSD
  34. - Other? (Please let us know in description)
  35. validations:
  36. required: true
  37. - type: dropdown
  38. id: backends
  39. attributes:
  40. label: GGML backends
  41. description: Which GGML backends do you know to be affected?
  42. options: [AMX, BLAS, CPU, CUDA, HIP, Kompute, Metal, Musa, RPC, SYCL, Vulkan]
  43. multiple: true
  44. - type: textarea
  45. id: steps_to_reproduce
  46. attributes:
  47. label: Steps to Reproduce
  48. description: >
  49. Please tell us how to reproduce the bug and any additional information that you think could be useful for fixing it.
  50. If you can narrow down the bug to specific compile flags, that information would be very much appreciated by us.
  51. placeholder: >
  52. Here are the exact commands that I used: ...
  53. validations:
  54. required: true
  55. - type: textarea
  56. id: first_bad_commit
  57. attributes:
  58. label: First Bad Commit
  59. description: >
  60. If the bug was not present on an earlier version: when did it start appearing?
  61. If possible, please do a git bisect and identify the exact commit that introduced the bug.
  62. validations:
  63. required: false
  64. - type: textarea
  65. id: logs
  66. attributes:
  67. label: Relevant log output
  68. description: >
  69. Please copy and paste any relevant log output, including the command that you entered and any generated text.
  70. This will be automatically formatted into code, so no need for backticks.
  71. render: shell
  72. validations:
  73. required: true