el-engine-candle — inference engine adapter over Candle (ADR-002),
implementing [el_runtime::InferenceEngine] / RuntimeAcl.
Consumers supply their own model file; see [CandleEngine::from_path] and
[CandleEngine::from_bytes]. For tests that need a working engine without
a model asset, use [CandleEngine::toy].
Expected GGUF tensor names:
token_embd.weight— embedding table[vocab, dim]output.weightorlm_head.weight— lm-head[vocab, dim](standard Llama layout)
Float logits are quantised to integer milli-logits at the ACL boundary, so
Candle's Tensor/Device types never cross into the domain.