()
| 18 | |
| 19 | #[allow(unused_must_use)] |
| 20 | fn test_backend() { |
| 21 | info(); |
| 22 | |
| 23 | println!("Create a 10-by-10 matrix of random floats on the compute device"); |
| 24 | let num_rows: u64 = 10; |
| 25 | let num_cols: u64 = 10; |
| 26 | let dims = Dim4::new(&[num_rows, num_cols, 1, 1]); |
| 27 | |
| 28 | helper(dims) |
| 29 | } |
| 30 | |
| 31 | #[allow(unused_must_use)] |
| 32 | fn main() { |