feat(cli): don't require executor arg anymore

This commit is contained in:
multisn8 2024-01-18 20:35:15 +01:00
parent 23ffbe39dc
commit 4db6eb4317
Signed by: multisamplednight
GPG key ID: 6D525AA147CBDAE2

View file

@ -7,13 +7,9 @@ mod value;
/// The available executors /// The available executors
/// unused in early dev. /// unused in early dev.
#[derive(Debug, Clone, Copy, clap::ValueEnum)] #[derive(Debug, Clone, Copy, clap::ValueEnum)]
pub enum Executors { pub enum RegisteredExecutor {
/// the debug executor is single threaded and really, *really* slow. And unstable. Don't use. Unless you're a dev working on this. /// the debug executor is single threaded and really, *really* slow. And unstable. Don't use. Unless you're a dev working on this.
Debug, Debug,
/// the CPU executor primarily uses the CPU. Most likely most feature complete, and the fallback.
Cpu,
/// the Vulkan executor (obviously) uses vulkan. there's a good chance this isn't implemented yet as you're reading this.
Vulkan,
} }
trait Executor { trait Executor {