You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/lib.rs
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,26 @@
1
+
//! ArrayFire is a high performance software library for parallel computing with
2
+
//! an easy-to-use API. ArrayFire abstracts away much of the details of
3
+
//! programming parallel architectures by providing a high-level container object,
4
+
//! the [Array](./struct.Array.html), that represents data stored on a CPU, GPU, FPGA,
5
+
//! or other type of accelerator. This abstraction permits developers to write
6
+
//! massively parallel applications in a high-level language where they need
7
+
//! not be concerned about low-level optimizations that are frequently required to
8
+
//! achieve high throughput on most parallel architectures.
9
+
10
+
//! This crate provides Rust bindings for the ArrayFire library. Given below table shows the rust bindings compatability with ArrayFire upstream. If you find any bugs, please report them on [github](https://github.com/arrayfire/arrayfire-rust/issues).
11
+
//!
12
+
//!
13
+
//! | ArrayFire Upstream | Rust Crate |
14
+
//! |:------------------:|:---------------:|
15
+
//! | 3.3.x | 3.3.x |
16
+
//! | 3.4.x | 3.4.x |
17
+
//!
18
+
//! Only, Major & Minor version numbers need to match.
0 commit comments