el-engine-candle 0.3.6

RuntimeAcl: InferenceEngine over Candle — real CPU forward (ADR-002).
Documentation

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.weight or lm_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.