|
| 1 | +name: Enhancement request |
| 2 | +description: Report a case where Halide produces a correct output in a suboptimal way |
| 3 | +labels: [ "enhancement" ] |
| 4 | +body: |
| 5 | + - type: textarea |
| 6 | + id: description |
| 7 | + attributes: |
| 8 | + label: Description |
| 9 | + description: >- |
| 10 | + Describe the problem: could an error message could be made clearer? |
| 11 | + Is documentation is missing or misleading? |
| 12 | + Was an optimization was missed? |
| 13 | + Did a pipeline take unexpectedly long to compile? |
| 14 | + validations: |
| 15 | + required: true |
| 16 | + - type: textarea |
| 17 | + id: reproducer |
| 18 | + attributes: |
| 19 | + label: Reproducing case |
| 20 | + description: >- |
| 21 | + A minimal, self-contained code example that demonstrates the problem. The |
| 22 | + smaller and more self-contained, the better. Ideally, it should look like |
| 23 | + one of the tests in `test/correctness`. |
| 24 | + render: cpp |
| 25 | + validations: |
| 26 | + required: true |
| 27 | + - type: dropdown |
| 28 | + id: halide-source |
| 29 | + attributes: |
| 30 | + label: How did you get Halide? |
| 31 | + options: |
| 32 | + - Built from source |
| 33 | + - pip (halide) |
| 34 | + - vcpkg |
| 35 | + - Homebrew |
| 36 | + - GitHub release binary |
| 37 | + - Other (describe below) |
| 38 | + validations: |
| 39 | + required: false |
| 40 | + - type: input |
| 41 | + id: halide-version |
| 42 | + attributes: |
| 43 | + label: Halide version |
| 44 | + description: >- |
| 45 | + The version number reported by your package manager, or the release tag |
| 46 | + if you downloaded a binary. |
| 47 | + placeholder: "e.g. 19.0.0" |
| 48 | + validations: |
| 49 | + required: false |
| 50 | + - type: input |
| 51 | + id: halide-commit |
| 52 | + attributes: |
| 53 | + label: Halide commit (if known) |
| 54 | + description: >- |
| 55 | + If you built from source, the commit hash you built from. |
| 56 | + placeholder: "e.g. abc1234" |
| 57 | + validations: |
| 58 | + required: false |
| 59 | + - type: input |
| 60 | + id: target |
| 61 | + attributes: |
| 62 | + label: Target |
| 63 | + description: The Halide target string used when the bug occurs. |
| 64 | + placeholder: "e.g. x86-64-linux-avx2, arm-64-osx" |
| 65 | + validations: |
| 66 | + required: false |
| 67 | + - type: input |
| 68 | + id: os |
| 69 | + attributes: |
| 70 | + label: Operating system |
| 71 | + placeholder: "e.g. Ubuntu 24.04, macOS 15.3, Windows 11" |
| 72 | + validations: |
| 73 | + required: false |
| 74 | + - type: textarea |
| 75 | + id: extra |
| 76 | + attributes: |
| 77 | + label: Additional context |
| 78 | + description: Anything else that might be relevant (build flags, environment, workarounds found, etc.) |
| 79 | + validations: |
| 80 | + required: false |
0 commit comments