|
| 1 | +--- |
| 2 | +name: Bug Report |
| 3 | +about: Create a bug report to help us improve ArrayFire |
| 4 | +title: "[BUG]" |
| 5 | +labels: 'bug' |
| 6 | +assignees: '' |
| 7 | +--- |
| 8 | + |
| 9 | +<!-- One to two sentences discription of the bug --> |
| 10 | + |
| 11 | +Description |
| 12 | +=========== |
| 13 | +<!-- |
| 14 | +* Additional details regarding the bug |
| 15 | +* Did you build ArrayFire yourself or did you use the official installers |
| 16 | +* Which backend is experiencing this issue? (CPU, CUDA, OpenCL) |
| 17 | +* Do you have a workaround? |
| 18 | +* Can the bug be reproduced reliably on your system? |
| 19 | +* A clear and concise description of what you expected to happen. |
| 20 | +* Run your executable with AF_TRACE=all and AF_PRINT_ERRORS=1 environment |
| 21 | + variables set. |
| 22 | +* Screenshot or terminal output of the results |
| 23 | +--> |
| 24 | + |
| 25 | +Reproducible Code and/or Steps |
| 26 | +------------------------------ |
| 27 | +<!-- |
| 28 | +* Steps or code snippet that can reproduce the bug |
| 29 | +* A full example will allow us to debug and fix the bug faster |
| 30 | +--> |
| 31 | + |
| 32 | +System Information |
| 33 | +------------------ |
| 34 | +<!-- |
| 35 | +Please provide the following information: |
| 36 | +1. ArrayFire version |
| 37 | +2. Devices installed on the system |
| 38 | +3. (optional) Output from the af::info() function if applicable. |
| 39 | +4. Output from the following scripts: |
| 40 | +
|
| 41 | +Run one of the following commands based on your OS |
| 42 | +
|
| 43 | +Linux: |
| 44 | +```sh |
| 45 | +lsb_release -a |
| 46 | +if command -v nvidia-smi >/dev/null; then |
| 47 | + nvidia-smi --query-gpu="name,memory.total,driver_version" --format=csv -i 0 |
| 48 | +else |
| 49 | + echo "nvidia-smi not found" |
| 50 | +fi |
| 51 | +if command -v /opt/rocm/bin/rocm-smi >/dev/null; then |
| 52 | + /opt/rocm/bin/rocm-smi --showproductname |
| 53 | +else |
| 54 | + echo "rocm-smi not found." |
| 55 | +fi |
| 56 | +if command -v clinfo > /dev/null; then |
| 57 | + clinfo |
| 58 | +else |
| 59 | + echo "clinfo not found." |
| 60 | +fi |
| 61 | +``` |
| 62 | +
|
| 63 | +Windows: |
| 64 | +Download clinfo from https://github.com/Oblomov/clinfo |
| 65 | +
|
| 66 | +If you have NVIDIA GPUs. Run nvidia-smi usually located in |
| 67 | +C:\Program Files\NVIDIA Corporation\NVSMI |
| 68 | +
|
| 69 | +Provide driver version for your GPU. (This is vendor specific) |
| 70 | +--> |
| 71 | + |
| 72 | +Checklist |
| 73 | +--------- |
| 74 | + |
| 75 | +- [ ] Using the latest available ArrayFire release |
| 76 | +- [ ] GPU drivers are up to date |
0 commit comments