4 releases
Uses old Rust 2015
0.2.2 | Oct 29, 2019 |
---|---|
0.2.1 | Oct 29, 2019 |
0.2.0 | Oct 29, 2019 |
0.1.0 | Oct 24, 2019 |
#48 in #gpgpu
13KB
141 lines
This crate aims to make the use of vulkano
quicker and easier when working on a smaller project.
Example
use geyser::Cryo;
// Instantiate vulkano
let cryo = Cryo::new();
// Create compute pipeline
let pipeline = compute_pipeline!(
inst,
src: "
#version 450
layout(set = 0, binding = 0) buffer Data {
uint data[];
} buf;
void main() {
uint idx = gl_GlobalInvocationID.x;
buf.data[idx] = idx * 12;
}
");
// Create buffer
let buf = cryo.buffer_from_data(vec![0; 69]).expect("Failed to create buffer");
// Create descriptor set
let set = descriptor_set!([buf], pipeline);
// Dispatch
cryo.dispatch([69, 1, 1], pipeline.clone(), set.clone());
// Display the results
buf.read().expect("Failed to read from buffer")
.iter().enumerate().for_each(|(i, x)| println!("Index: {} equals: {}", i, *x));
Dependencies
~36MB
~779K SLoC