010-bug-compilation.yml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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: Operating systems
  28. description: Which operating systems do you know to be affected?
  29. multiple: true
  30. options:
  31. - Linux
  32. - Mac
  33. - Windows
  34. - BSD
  35. - Other? (Please let us know in description)
  36. validations:
  37. required: true
  38. - type: dropdown
  39. id: backends
  40. attributes:
  41. label: GGML backends
  42. description: Which GGML backends do you know to be affected?
  43. options: [AMX, BLAS, CPU, CUDA, HIP, Kompute, Metal, Musa, RPC, SYCL, Vulkan]
  44. multiple: true
  45. validations:
  46. required: true
  47. - type: textarea
  48. id: info
  49. attributes:
  50. label: Problem description & steps to reproduce
  51. description: >
  52. Please give us a summary of the problem and tell us how to reproduce it.
  53. If you can narrow down the bug to specific compile flags, that information would be very much appreciated by us.
  54. placeholder: >
  55. I'm trying to compile llama.cpp with CUDA support on a fresh install of Ubuntu and get error XY.
  56. Here are the exact commands that I used: ...
  57. validations:
  58. required: true
  59. - type: textarea
  60. id: first_bad_commit
  61. attributes:
  62. label: First Bad Commit
  63. description: >
  64. If the bug was not present on an earlier version: when did it start appearing?
  65. If possible, please do a git bisect and identify the exact commit that introduced the bug.
  66. validations:
  67. required: false
  68. - type: textarea
  69. id: command
  70. attributes:
  71. label: Compile command
  72. description: >
  73. Please provide the exact command you used to compile llama.cpp. For example: `cmake -B ...`.
  74. This will be automatically formatted into code, so no need for backticks.
  75. render: shell
  76. validations:
  77. required: true
  78. - type: textarea
  79. id: logs
  80. attributes:
  81. label: Relevant log output
  82. description: >
  83. Please copy and paste any relevant log output, including any generated text.
  84. This will be automatically formatted into code, so no need for backticks.
  85. render: shell
  86. validations:
  87. required: true