arrayfire-rust icon indicating copy to clipboard operation
arrayfire-rust copied to clipboard

Rust wrapper for ArrayFire

Results 25 arrayfire-rust issues
Sort by recently updated
recently updated
newest added

- [ ] Publish `arrayfire-rust` crate to crates.io - [ ] Publish `af-cuda-interop` crate to crates.io if changed - [ ] Publish `af-opencl-interop` crate to crates.io if changed - [...

As the title suggests. A similar design can be found in Python: `"123456"[0:-1]`.

Feature

The following code will crash when using GTX 1060 and CUDA 11.8 ``` fn main(){ let a = range::(dim4!(2), 0); let b = min(&a, 0); println!("b={}", &b); } ``` ```...

`ignoring file /opt/arrayfire/lib/libaf.dylib, building for macOS-arm64 but attempting to link with file built for macOS-x86_64` Seems not working for arm64 macOS. Tried to build from source, but got error target...

Bug
Build

The following program crashed. But why? ``` use arrayfire::*; fn main() { let mut y =constant!(0 as u8;1); for i in 0..1000 { let x = load_image::("2dzs/robot_2dz.png".to_string(), true); let z...

Bug