Crates.io | ocl-algebra |
lib.rs | ocl-algebra |
version | 0.1.0 |
source | src |
created_at | 2016-12-04 15:45:47.529381 |
updated_at | 2016-12-04 15:45:47.529381 |
description | low level Linear Algebra library for OpenCL |
homepage | https://github.com/timohaas/ocl-algebra |
repository | https://github.com/timohaas/ocl-algebra |
max_upload_size | |
id | 7461 |
size | 21,052 |
Low Level Linear Algebra Library for OpenCL
func main() {
// init library
let mut c = new();
// init some matrices
let m0 = Matrix{rows: 2, cols: 2, data: vec![1.0, 2.0, 3.0, 4.0]};
let m1 = Matrix{rows: 2, cols: 1, data: vec![4.0, 5.0]};
/* matrix multiplication
[1 2] * [4] = [14]
[3 4] [5] [32] */
let m = c.mul_matrix_matrix(&m0,&m1);
/* matrix scalar multiplication
[1 2] * 1.5 = [1.5 3]
[3 4] [4.5 6]*/
let m = c.mul_matrix_scalar(&m0,1.5);
}
Licensed under either of:
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
“OpenCL and the OpenCL logo are trademarks of Apple Inc. used by permission by Khronos.” “Vulkan and the Vulkan logo are trademarks of the Khronos Group Inc.”