An open API service indexing awesome lists of open source software.

https://github.com/cardinal-cryptography/wasmarking

Testing how (in)efficient it is to generate SNARK proofs in a browser
https://github.com/cardinal-cryptography/wasmarking

Last synced: 7 days ago
JSON representation

Testing how (in)efficient it is to generate SNARK proofs in a browser

Awesome Lists containing this project

README

          

# wasmarking

Testing performance of generating SNARK proofs in native and browser (WASM) environments.

To run all benchmarks:

```shell
make bench
```

## Running wasm benchmarks

```shell
cargo install wasm-pack --no-default-features
wasm-pack test --release --headless --firefox
```

or

```shell
make wasm-bench
```

## Running native benchmarks

```shell
cargo install cargo-criterion
cargo criterion
```

or

```shell
make native-bench
```

## License

The code in this repository is licensed under the terms of Apache License 2.0.