arrayfire / arrayfire/arrayfire-rust

[BUG] `Array::get_backend()` can never return `OPENCL`

Đang mở Phù hợp với người mới
#387 0 bình luận 0 reaction 0 người được giao Xem trên GitHub
Bug
Ngôn ngữ chính
Rust
Star
827
Fork
59
Chỉ số merge pull request
Không có pull request nào được merge trong 30 ngày

Mô tả

[`src/core/array.rs:392-404`](https://github.com/arrayfire/arrayfire-rust/blob/master/src/core/array.rs#L392-L404):

```rust
match (err_val, ret_val) {
(0, 1) => Backend::CPU,
(0, 2) => Backend::CUDA,
(0, 3) => Backend::OPENCL,
_ => Backend::DEFAULT,
}
```

`af_backend` is a bit-flag enum, not sequential (`include/af/defines.h:414-417`, v3.8.0):

```c
AF_BACKEND_DEFAULT = 0,
AF_BACKEND_CPU = 1,
AF_BACKEND_CUDA = 2,
AF_BACKEND_OPENCL = 4
```

There is no backend with value 3. An OpenCL-created array returns 4, falls through to the wildcard, and is reported as `Backend::DEFAULT`.

**Fix:** `(0, 4) => Backend::OPENCL`.

---

Found by Claude Opus 5

Hướng dẫn đóng góp

Chưa lập chỉ mục được hướng dẫn đóng góp cho kho mã nguồn này

Hướng nghiên cứu

Start with src/core/array.rs:392-404 and compare the backend values in include/af/defines.h:414-417. Update the mapping so an OpenCL-created array is reported as Backend::OPENCL, then run the existing test suite or backend-related tests to verify the result.

Do mô hình lập chỉ mục viết ra từ nội dung của issue.

Đánh giá

Công nghệ
rust
Lĩnh vực
backend
Loại issue
Lỗi
Độ khó
1/5
Thời gian dự kiến
Dưới một giờ
Mức độ hoạt động
Ít trao đổi
Độ rõ ràng
Đặc tả rõ ràng
Mức phù hợp với người mới
88/100

Nhận issue mới trong hộp thư của bạn

Bản tóm tắt ngắn những issue GitHub phù hợp với người mới.