Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Concrete compiler to 'Users of MLIR' #196

Merged
merged 2 commits into from
Mar 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 22 additions & 1 deletion website/content/users/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,30 @@ constantly evolving, aiming to deliver execution on heterogenous architectures w
The CIRCT project is an (experimental!) effort looking to apply MLIR and the LLVM
development methodology to the domain of hardware design tools.

## [Concrete](https://github.com/zama-ai/concrete): TFHE Compiler that converts python programs into FHE equivalent

Concrete is an open-source framework that simplifies the use of
[Fully Homomorphic Encryption](https://fhe.org) (FHE) and makes writing FHE
programs easy for developers

FHE is a powerful technology that enables computations on encrypted data without
needing to decrypt it. This capability ensures user privacy and provides robust
protection against data breaches.

Concrete enables developers to efficiently develop privacy-preserving
applications for various use cases. For instance,
[Concrete ML](https://github.com/zama-ai/concrete-ml) is built on top of
Concrete to integrate privacy-preserving features of FHE into machine learning
use cases.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you mdformat the file with 80 col wrapping?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Absolutely! Done.

## [DSP-MLIR](https://github.com/MPSLab-ASU/DSP_MLIR): A Framework for Digital Signal Processing Applications in MLIR

DSP-MLIR is a framework designed specifically for DSP applications. It provides a DSL (Frontend), compiler, and rewrite patterns that detect DSP patterns and apply optimizations based on DSP theorems. The framework supports a wide range of DSP operations, including filters (FIR, IIR, filter response), transforms (DCT, FFT, IFFT), and other signal processing operations such as delay and gain, along with additional functionalities for application development.
DSP-MLIR is a framework designed specifically for DSP applications. It provides
a DSL (Frontend), compiler, and rewrite patterns that detect DSP patterns and
apply optimizations based on DSP theorems. The framework supports a wide range
of DSP operations, including filters (FIR, IIR, filter response), transforms
(DCT, FFT, IFFT), and other signal processing operations such as delay and gain,
along with additional functionalities for application development.

## [Enzyme](https://enzyme.mit.edu): General Automatic Differentiation of MLIR
Enzyme (specifically EnzymeMLIR) is a first-class automatic differentiation
Expand Down