Skip to content
This repository was archived by the owner on May 4, 2020. It is now read-only.
/ gpuarray-rs Public archive

A simple array math library in Rust on top of OpenCL

License

Notifications You must be signed in to change notification settings

tedsta/gpuarray-rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gpuarray-rs

Make use of GPU-powered array operations from Rust! Gpuarray-rs uses OpenCL but hides all the details. Still mostly a proof of concept.

Example

Matrix multiplication

extern crate gpuarray as ga;

use ga::Context;
use ga::tensor::{Tensor, TensorMode};
use ga::array::Array;

fn main() {
    let ref ctx = Context::new();

    let a = Array::from_vec(vec![5, 10], (0..5*10).map(|x| x as f32).collect());
    let b = Array::from_vec(vec![10, 15], (0..10*15).map(|x| (x as f32)*2.0).collect());

    let a_gpu = Tensor::from_array(ctx, &a, TensorMode::In);
    let b_gpu = Tensor::from_array(ctx, &b, TensorMode::In);
    let c_gpu: Tensor<f32> = Tensor::new(ctx, vec![5, 15], TensorMode::Mut);

    ga::matmul(ctx, &a_gpu, &b_gpu, &c_gpu);
    
    let c = c_gpu.get(ctx);

    println!("A = \n{:?}", a);
    println!("B = \n{:?}", b);
    println!("A*B = \n{:?}", c);
}

License

MIT

About

A simple array math library in Rust on top of OpenCL

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published