lift-export 0.4.4

LIFT compiler backends: LLVM IR, ONNX (opset 21), OpenQASM 3 exporters; CUDA PTX and XLA planned
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! LIFT Export: Backend code generators for LIFT compiler framework.
//!
//! Provides exporters to LLVM IR (for GPU/CPU compilation), OpenQASM 3.0
//! (for quantum hardware execution on IBM, Rigetti, IonQ, etc.), and ONNX
//! (for neural network interchange with PyTorch, TensorFlow, TensorRT, etc.).

pub mod llvm;
pub mod onnx;
pub mod qasm_export;

pub use llvm::LlvmExporter;
pub use onnx::{OnnxExportError, OnnxExporter};
pub use qasm_export::QasmExporter;