pulsar_lang/
lib.rs

1//! Pulsar is a high-level programming language for building hardware
2//! accelerators. This crate (the `pulsar` crate) contains a driver that links
3//! together all the langauge components. The documentation for each individual
4//! component is linked under the "Re-exports" section.
5//!
6//! Copyright (C) 2024 Ethan Uppal. All rights reserved.
7
8#[doc(no_inline)]
9pub use pulsar_backend;
10#[doc(no_inline)]
11pub use pulsar_frontend;
12#[doc(no_inline)]
13pub use pulsar_ir;
14#[doc(no_inline)]
15pub use pulsar_utils;