ferrox-vulkan 0.15.3

Vulkan/SPIR-V beachhead for the Ferrox inference engine (GO/NO-GO slice, not a backend)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! `cargo run -p ferrox-vulkan --features vulkan --example probe`
//!
//! Prints the Vulkan device this machine exposes, or names what is
//! missing. The one command to run before believing anything else in
//! this crate.
fn main() {
    match ferrox_vulkan::device::probe() {
        Ok(name) => println!("vulkan device: {name}"),
        Err(e) => {
            println!("no vulkan device: {e}");
            std::process::exit(1);
        }
    }
}