Authors: Tom Shen (UCB/Manta), Boyuan Feng (Manta), Shumo Chu (Manta)
Acknowledgement: Thanks for Kobi's comments on pipegener
WASM (WebAssembly) is the de-facto standard for smart contact VM like Polkadot, Definity, Cosmos. And also critical for wallet adoption. However, making ZKP works efficiently on WASM is still a challenge today. In Manta’s vallina benchmark, we can observe 6x - 60x performance penalty on WASM compared with X86 native binary. This WASM ZKP challenge is to bring breakthroughs in compilation to make ZKP on WASM (both prover and verifier).
We think single thread performance is extremely important, for two reasons:
Goal: Test the correctness and performance of WASM binaries on some operations that are common in ZKP systems.
Please check out benchmark code.
Intel i7-6560U CPU @ 2.2GHz, 8GB Memory, Linux 16.04 LTS.
Using Arkworks BLS12-381 curve.
Input Vector Length | Output Vector Length | WASM (ms) | Native (ms) | Perf. Penalty |
---|---|---|---|---|
2^14 | 2^15 | 111 | 18 | 6.2 |
2^16 | 2^17 | 496 | 86 | 5.8 |
2^18 | 2^19 | 2373 | 450 | 5.3 |
2^20 | 2^21 | 9912 | 2118 | 4.7 |
We note that, for the same input vector length, the output vector length also has impact over the latency. Please see below:
Input Vector Length | Output Vector Length | WASM (ms) | Native (ms) | Perf. Penalty |
---|---|---|---|---|
2^14 | 2^15 | 111 | 18 | 6.2 |
2^14 | 2^16 | 190 | 32 | 5.9 |
2^14 | 2^17 | 358 | 62 | 5.8 |
2^14 | 2^18 | 773 | 129 | 6.0 |
Input Vector Length | WASM (ms) | Native (ms) | Perf. Penalty |
---|---|---|---|
2^8 | 478 | 14 | 34.1 |
2^10 | 1627 | 38 | 42.8 |
2^12 | 6191 | 125 | 49.5 |
2^14 | 24243 | 393 | 61.7 |
Input Vector Length | WASM (ms) | Native (ms) | Perf. Penalty |
---|---|---|---|
2^2 | 97 | 7 | 13.9 |
2^4 | 368 | 30 | 12.3 |
2^6 | 1479 | 121 | 12.3 |
2^8 | 5916 | 485 | 12.2 |
Input:
This test measures the performance of (I)FFT.
Test Field: Bls12-381-Fr
Input:
Output:
vector \(\vec{v_2}\) of length \(|D_2|\) such that \(\vec{v_2}\) is the evaluation of \(p\) on \(D_2\).
Analysis:
A common wasm binary will need one IFFT to get coefficients of \(p\) and one FFT to evaluate \(p\) on \(D_2\)
This test measures the performance of bilinear pairing.
Test Curve: Bls12-381 as \((G_1, G_2)\)
Input:
We sample \(\vec{v}_1\), \(\vec{v}_2\) by taking random exponent on affine generation. Sampling is not included in benchmark time. Exponents will not be given.
Output:
\(x\in G_T\) such that
\[
x = \prod_{(P, Q)\in\mbox{zip}(\vec{v}_1, \vec{v}_2)} e(P,Q)
\]
Analysis:
This operation requires computation of product of pairings.
This test measures the performance of scalar multiplication.
Test Curve: Bls12-381 as \((G_1, G_2, \mathbb{F}_r)\)
Input:
Output:
\[
x = \sum_{(P, s)\in\mbox{zip}(\vec{v}, \vec{s})}sP
\]
Analysis:
The naive operation requires computation of \(|\vec{v}|\) scalar multiplication.
Potential improvement ideas:
or
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up
Syntax | Example | Reference | |
---|---|---|---|
# Header | Header | 基本排版 | |
- Unordered List |
|
||
1. Ordered List |
|
||
- [ ] Todo List |
|
||
> Blockquote | Blockquote |
||
**Bold font** | Bold font | ||
*Italics font* | Italics font | ||
~~Strikethrough~~ | |||
19^th^ | 19th | ||
H~2~O | H2O | ||
++Inserted text++ | Inserted text | ||
==Marked text== | Marked text | ||
[link text](https:// "title") | Link | ||
 | Image | ||
`Code` | Code |
在筆記中貼入程式碼 | |
```javascript var i = 0; ``` |
|
||
:smile: | ![]() |
Emoji list | |
{%youtube youtube_id %} | Externals | ||
$L^aT_eX$ | LaTeX | ||
:::info This is a alert area. ::: |
This is a alert area. |
On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?
Please give us some advice and help us improve HackMD.
Syncing