Awesome
<div align="center">
<br /><br /><br />
<img src="tachyon_logo_horizontal.png" style="width: 50%;">
<br /><br /><br />
</div>
Overview
Tachyon is a Modular ZK Backend, powered by GPU.
Join Our Developer Community
We're thrilled to have you become a part of our community!
If your passion for Tachyon matches ours, we extend a warm invitation for you to join our developer community on Telegram. Ask questions, share insights, or simply stay informed on Tachyon's newest updates with other developers and the original team through our Telegram group. We hope to see you there!
Thank you for your keen interest in contributing to Tachyon! ✨
Design Goals
- General Purpose: A versatile ZK library empowers developers to implement any proving scheme with minimal effort, often enhancing developer productivity. To create a general-purpose backend, aligning the code structure as closely as possible with the algebraic structure is paramount.
- Easy to Use: Achieving widespread adoption is essential for the success of any product. Consequently, one of the key focal points of the Tachyon project is to include offering packages for various programming languages and runtimes.
- Blazing Fast: Tachyon's foremost requirement is speed, and not just any speed, but blazing speed! This entails Tachyon delivering exceptional performance on both CPU and GPU platforms.
- GPU Interoperability: Tachyon's code is designed to be compatible with both CPU and GPU in the majority of scenarios.
List of Features
Symbol Definitions:
- :heavy_check_mark: Currently supported.
- 🏗️ Partially implemented or is under active construction.
- :x: Not currently supported.
Finite Fields
| CPU | GPU |
---|
BabyBear | :heavy_check_mark: | :heavy_check_mark: |
BinaryFields | :heavy_check_mark: | :heavy_check_mark: |
Goldilocks | :heavy_check_mark: | :heavy_check_mark: |
Mersenne-31 | :heavy_check_mark: | :heavy_check_mark: |
KoalaBear | :heavy_check_mark: | :heavy_check_mark: |
Elliptic Curves
| CPU | GPU |
---|
BN254 | :heavy_check_mark: | :heavy_check_mark: |
BLS12-381 | :heavy_check_mark: | :heavy_check_mark: |
Secp256k1 | :heavy_check_mark: | :heavy_check_mark: |
Pallas | :heavy_check_mark: | :heavy_check_mark: |
Vesta | :heavy_check_mark: | :heavy_check_mark: |
Commitment Schemes
| CPU | GPU |
---|
GWC | :heavy_check_mark: | :heavy_check_mark: |
SHPlonk | :heavy_check_mark: | :heavy_check_mark: |
FRI | :heavy_check_mark: | :x: |
Pedersen | :heavy_check_mark: | :heavy_check_mark: |
Hashes
| CPU | GPU |
---|
Poseidon | :heavy_check_mark: | :x: |
Poseidon2 | :heavy_check_mark: | :x: |
FFT
| CPU | GPU |
---|
Radix2FFT | :heavy_check_mark: | :heavy_check_mark: |
MixedRadixFFT | :heavy_check_mark: | :heavy_check_mark: |
Lookups
| CPU | GPU |
---|
Halo2 | :heavy_check_mark: | :x: |
SNARKs
| CPU | GPU |
---|
Groth16 | :heavy_check_mark: | :heavy_check_mark: |
Halo2 | :heavy_check_mark: | :x: |
Frontends
| CPU | GPU |
---|
Circom(groth16) | :heavy_check_mark: | :heavy_check_mark: |
Halo2 | :heavy_check_mark: | :x: |
Roadmap
Prerequisites
Bazel
Please follow the instructions here.
Ubuntu
sudo apt install libgmp-dev libomp-dev
Macos
brew install gmp libomp
Getting started
Build
bazel build //...
Test
bazel test //...
Check How To Build for more information.