Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maeln/wyzoid
A basic GPGPU playground using Vulkan
https://github.com/maeln/wyzoid
gpgpu playground rust shader vulkan
Last synced: 3 days ago
JSON representation
A basic GPGPU playground using Vulkan
- Host: GitHub
- URL: https://github.com/maeln/wyzoid
- Owner: maeln
- License: other
- Created: 2019-07-16T14:24:39.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-06-06T18:59:13.000Z (over 2 years ago)
- Last Synced: 2025-01-01T14:42:01.449Z (8 days ago)
- Topics: gpgpu, playground, rust, shader, vulkan
- Language: Rust
- Homepage:
- Size: 479 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Wyzoid ๐งถ
[![Crates.io](https://img.shields.io/crates/v/wyzoid)](https://crates.io/crates/wyzoid)
[![Build Status](https://travis-ci.org/maeln/wyzoid.svg?branch=master)](https://travis-ci.org/maeln/wyzoid)Wyzoid is a small framework made to easily experiment with compute shader / GPGPU using Vulkan (via [ash](https://crates.io/crates/ash)).
## Examples
The project include 3 examples:
1. "basic": Execute one shader on one buffer
- `cargo run --example basic`
2. "multiplebuffer": Execute one shader on two buffer
- `cargo run --example multiplebuffer`
3. "multiplebuffershader": Execute two shader in series on two buffer
- `cargo run --example multiplebuffershader`## Documentation
Documentation is very much a todo. In the meanwhile, you can look at the [examples](./examples).