Backend Architecture
Date: 2026-05-28 Repos: tenferro-rs Related: ../architecture/ad-pipeline.md, primitive-catalog.md, ../reference/stablehlo-primitives.md, ../reference/jax-primitives.md
I. Overview
All computation, primal and derivative, flows through the same execution pipeline.
Execution path
TraceContext -> TracedGraph -> GraphCompiler
│
│ compile
▼
CompiledGraph
│
│ Runtime::prepare_compiled() / Runtime::run_compiled()
│ - validate ordered input metadata
│ - select engines and resolve execution endpoints
│ - lower semantic operations to private ExecProgram staging
│ - build the private ScheduledGraph
▼
private runtime preparation and staging
│
│ Runtime::run_prepared() / Runtime::submit()
│ - retain the prepared schedule for the runtime epoch
│ - enqueue operations, transfers, and barriers through event domains
│ - drain submitted work before returning execution failure
▼
private ScheduledGraph
│
├── ScheduledNode::Operation
├── ScheduledNode::Transfer (endpoint-pair provider)
└── ScheduledNode::Barrier / reserved collective nodes
There is no in-process StableHloProgram / StableHloOp layer. The current public runtime contract is centered on CompiledGraph and runtime preparation. ExecProgram and ScheduledGraph are private runtime artifacts: staging lowers the immutable semantic graph, and scheduling binds storage endpoints, transfer providers, and event-domain dependencies for one runtime snapshot.
The optional XLA path is a peer executor over a compiled CompiledGraph lowering view, not a native backend. tenferro-xla may inspect immutable lowering metadata, emit StableHLO, and load PJRT plugins at runtime, but it does not implement TensorBackend and does not bypass Runtime::run_compiled dispatch.
II. Execution IR
ExecProgram is private runtime staging for standard tensor programs and registered extension runtimes. It is not the public graph artifact and callers must not construct or depend on it.
pub(crate) struct ExecProgram {
pub instructions: Vec<ExecInstruction>,
pub input_slots: Vec<usize>,
pub output_slots: Vec<usize>,
pub n_slots: usize,
pub shape_guards: Vec<ShapeGuard>,
}
pub struct ExecInstruction {
pub op: ExecOp,
pub input_slots: Vec<usize>,
pub output_slots: Vec<usize>,
pub dtype: DType,
pub output_shapes: Vec<Vec<DimExpr>>,
pub output_extents: Vec<Vec<ShapeExtent<DimExpr>>>,
pub last_use: Vec<bool>,
}ScheduledGraph is the crate-private executable dependency DAG. It records prepared operation nodes, first-class endpoint transfer nodes, value-slot locations, event dependencies, and output bindings for one runtime snapshot.
Core guarantees
- Each instruction is SSA over slots: outputs are written once.
dtypeis a representative instruction dtype used by legacy single-output paths. For multi-output extensions, per-output slot metadata is the authoritative dtype source.output_shapescontains one symbolic shape per output slot.output_extentscontains one extent vector per output slot.last_useis populated after lowering and is used for buffer reclamation.shape_guardsretains normalized symbolic shape obligations that could not be discharged from compile-time input metadata. Guard semantics are the relation and normalized left/right expressions; diagnostic source and instruction provenance are not semantic cache identity.- Multi-output extension instructions write directly to multiple output slots and may use mixed output dtypes.
Before dispatching any backend, host, or extension instruction, execution must evaluate every retained shape guard against the concrete program-input shapes in stored order and return the first typed shape-constraint error on failure. This validation is enforced immediately after execution-program input-count validation and before segmentation, tensor allocation, backend-buffer allocation, execution-output allocation, backend sessions, host work, or extension dispatch. Validation may allocate small metadata vectors. The input-count error therefore takes precedence over a guard expression’s MissingInput evaluation error.
The guarantee covers owned tensor and owned value-output execution, borrowed and non-consuming reads, Runtime::run_compiled* entry points, segmented execution, extension-owned core-program execution through the nonsegmented path, and programs with no instructions. Programs with no guards retain their previous behavior. Compiler-cache hits reuse semantic plans while restoring the current compilation’s guard provenance, so executor failures report the current extension family and final instruction index.
Private staging vocabulary
The private staging operations keep StableHLO-aligned names where they remain useful. They are lowered into scheduled operation nodes before execution; the public contract is the semantic graph plus runtime preparation and scheduling:
- Elementwise:
Add,Multiply,Negate,Conj,Divide,Abs,Sign,Maximum,Minimum,Compare,Select,Clamp,Exp,Log,Sin,Cos,Tanh,Sqrt,Rsqrt,Pow,Expm1,Log1p - Structural:
Transpose,Reshape,BroadcastInDim,Convert,ExtractDiag,EmbedDiag,Tril,Triu - Reductions:
ReduceSum,ReduceProd,ReduceMax,ReduceMin - Indexing / shape:
Gather,GatherDynamicSliceSizes,Scatter,Slice,DynamicSlice,DynamicUpdateSlice,Pad,Concatenate,Reverse,ShapeOf,DynamicTruncate,PadToMatch - Contraction:
DotGeneral - Extension boundary:
Extension - Constants:
Constant
String CustomCall dispatch is gone. Structured linalg variants are first class extension operations owned by tenferro-linalg, not core ExecOp variants.
III. Lowering Contract
Semantic operation staging
Runtime preparation extracts the frozen SemanticProgram from a CompiledGraph and passes it to the private semantic-staging step, together with compiler options and concrete input metadata:
SemanticProgram- input dtypes
- input shapes as
Vec<DimExpr>
For each semantic instruction it:
- reads semantic operations and infers output dtype, shape, and extent metadata; extension instructions use constraint-aware output-meta inference for one
(dtype, shape)pair per output slot and collect local shape obligations - resolves output extents
- lowers semantic operations to private
ExecOpstaging - records output slot dtype/shape/extent metadata
- runs the compiler passes on the resulting
ExecProgramand populateslast_use - resolves retained constraint provenance against the final instruction stream, discharges compile-time-provable obligations, and stores the remaining normalized obligations in
shape_guards
Current pass pipeline
The active optimizer passes are:
DotDimensionSorterTransposeFoldingDotDecomposerDeadCodeElimination
ReductionSimplification was deleted and is not part of the current backend contract.
For pass algorithms and rationale, see optimizer-passes.md.
IV. Dispatch Categories
Execution is divided into three instruction categories.
Backend-session instructions
These run through BackendSession inside TensorBackend::with_backend_session(). They are the operations eligible for grouped segmented execution and, when supported by the backend, elementwise fusion planning.
Examples:
- elementwise ops
- structural ops such as
Transpose,Reshape,BroadcastInDim - reductions such as
ReduceSum,ReduceProd,ReduceMax,ReduceMin - indexing ops such as
Gather,GatherDynamicSliceSizes,Scatter,Slice,DynamicSlice,DynamicUpdateSlice,Pad,Concatenate,Reverse
The helper that executes one such instruction is execute_backend_op().
Host instructions
These are handled without calling backend kernels:
ShapeOfDynamicTruncatePadToMatchConstant
GatherDynamicSliceSizes resolves its symbolic slice_sizes against concrete runtime tensor shapes in the execution layer, then calls the backend through the normal concrete Gather path.
Constant uses TensorBackend::upload_host_tensor() so device-specific execution still receives correctly placed tensors without implicit transfer of user-supplied inputs.
FFI / boundary instructions
These stay as single-instruction boundaries in segmented execution:
DotGeneralExtension
DotGeneral dispatches through TensorBackend. Extension dispatch routes through the installed ExtensionModule for the operation family; linalg, einsum, and FFT provide those modules from their owning crates.
V. Segmented vs. Unsegmented Execution
Runtime::run_compiled and Runtime::submit are the public execution entry points for a CompiledGraph. Runtime preparation owns backend selection, registered extension modules, cache ownership, and the private CompiledGraph -> ExecProgram staging -> ScheduledGraph transition required to preserve dispatch invariants. The runtime executes the prepared schedule one node at a time and dispatches each operation through its selected engine bridge. When a downstream operation uses a different execution endpoint, preparation adds a ScheduledNode::Transfer with the registered endpoint-pair provider; execution bridges the source completion into the destination event domain before dispatch. Missing providers are runtime errors, not implicit host fallbacks.
The segmented internal path groups fusible backend instructions:
private ExecProgram staging
│
│ internal preparation/execution optimization
▼
segment_exec_program()
│
├── fused backend-session segments
├── single-instruction FFI segments
└── single-instruction host segments
Segmented execution exists to:
- reuse one backend execution session across consecutive backend ops
- enable elementwise fusion planning where the backend supports it
- preserve the same observable behavior as unsegmented execution
The unsegmented internal path evaluates one instruction at a time and is used by the current scheduled runtime loop, parity checks, and narrow owner-scoped extension-module composition. Neither this path nor the staging IR is a general public execution surface. Extension instructions must run through a registered ExtensionModule; missing module registration is an error, not a fallback to a host/reference path.
The engine uses last_use metadata to reclaim buffers via BackendSession::reclaim_buffer() or TensorBackend::reclaim_buffer().
VI. Backend Traits
TensorBackend
TensorBackend is the full standard-algebra backend surface in crates/tenferro-tensor/src/backend.rs.
It includes:
- elementwise arithmetic and analytic ops
- structural ops
- reductions
dot_general- indexing ops
with_backend_sessiondownload_to_hostupload_host_tensorreclaim_buffer
BackendSession is the session-local companion trait used by grouped backend execution. Backends may override with_backend_session() to install one shared execution scope, for example a CPU thread-pool context.
Custom operation families do not add a second backend trait. They lower to ExecOp::Extension and dispatch through their installed ExtensionModule. The owning extension crate is responsible for deciding whether that runtime uses the active TensorBackend, a provider-specific library, or an internal implementation.
VII. Layout and Device Contract
Layout
All runtime tensors are dense contiguous column-major tensors. The backend contract does not expose arbitrary stride-aware dispatch in the private ExecProgram staging IR.
This means:
- private
ExecProgramstaging does not encode layout transforms as a separate concern - backends receive dense tensors and can assume column-major layout
- compile-time shape reasoning is symbolic, but runtime storage layout is not
Device transfer
tenferro does not perform implicit CPU<->GPU transfer for user-visible backend ops. Tensors must already be on the correct device for the backend call.
The execution engine handles only two internal conveniences:
Constantcan be auto-uploaded throughupload_host_tensor()- host-only metadata/scalar operations can inspect or materialize tiny host values as part of execution
Unsupported backend operations must return an error rather than silently falling back across devices.
Placement
CompiledGraph and private ExecProgram staging are placement-agnostic. Runtime preparation resolves placement on Tensor values, binds operation endpoints in ScheduledGraph, and records the event-domain dependencies needed for execution.
VIII. Relation to StableHLO
StableHLO is now a reference vocabulary, not an in-process IR layer.
What remains true:
- many
StdTensorOp/ExecOpnames intentionally align with StableHLO - StableHLO and JAX documentation are still useful semantic references
- future external serialization could target StableHLO if the project adds such a backend later
What is no longer true:
- there is no
StableHloProgram - there is no
StableHloOp - there is no
lower_to_stablehlo()step in the live execution pipeline - there is no
GetTupleElement-style tuple indexing in runtime IR
IX. File Ownership
The current implementation is split across:
crates/tenferro-runtime/src/compiler/mod.rscrates/tenferro-runtime/src/compiler/semantic_staging.rscrates/tenferro-runtime/src/shape_infer.rscrates/tenferro-runtime/src/exec.rscrates/tenferro-runtime/src/segment.rscrates/tenferro-runtime/src/runtime/preparation.rscrates/tenferro-runtime/src/runtime/schedule.rscrates/tenferro-runtime/src/runtime/execution.rscrates/tenferro-runtime/src/runtime/snapshot.rscrates/tenferro-runtime/src/graph/program.rscrates/tenferro-tensor/src/backend.rs
Those files are the source of truth for the live backend contract. This document is intentionally a high-level summary of that code.