Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 5 additions & 2 deletions backend/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
OUTDIR=../perf/data/new/

all: init blstrs arkworks curve25519-dalek pasta_curves zkcrypto gnark pairing_ce
all: init blstrs arkworks curve25519-dalek pasta_curves zkcrypto gnark pairing_ce halo2_curves

init:
cargo install cargo-criterion
Expand Down Expand Up @@ -29,6 +29,9 @@ zkcrypto:
pairing_ce:
cd pairing_ce; cargo criterion --message-format=json 1> ../$(OUTDIR)/pairing_ce.json

halo2_curves:
cd halo2_curves; cargo criterion --message-format=json 1> ../$(OUTDIR)/halo2_curves.json

gnark:
git clone -b zkalc https://github.com/ConsenSys/gnark-crypto.git || true
cd gnark-crypto && \
Expand All @@ -45,4 +48,4 @@ clean:
@rm -rf gnark-crypto
@rm -rf $(OUTDIR)

.PHONY: init blstrs arkworks curve25519-dalek pasta_curves zkcrypto pairing_ce arkworks_curves_benchmarks ffjavascript clean
.PHONY: init blstrs arkworks curve25519-dalek pasta_curves zkcrypto pairing_ce halo2_curves arkworks_curves_benchmarks ffjavascript clean
Loading