Skip to main content

lift_export/
lib.rs

1//! LIFT Export: Backend code generators for the LIFT compiler framework.
2//!
3//! Provides exporters to LLVM IR (for GPU/CPU compilation) and OpenQASM 3.0
4//! (for quantum hardware execution on IBM, Rigetti, IonQ, etc.).
5
6pub mod llvm;
7pub mod qasm_export;
8
9pub use llvm::LlvmExporter;
10pub use qasm_export::QasmExporter;