The crate exposes two opt-in features:
skeletonenables the CPU walking skeleton implementation. Without it,ExecutionStrategy::AutoandExecutionStrategy::CpuOnlyreturnBackendUnavailable.gpuprepares the orchestration surface for the forthcoming GPU backend. In the walking skeleton build, it reuses the CPU path. Withoutskeleton, GPU execution errors out until the real accelerator implementation arrives.
Choose an ExecutionStrategy that matches the compiled features. Allowing
Auto keeps behaviour stable across builds while seamlessly adopting GPU
support when available.