From 798f0468945574ad23b87c23757853804aceaa83 Mon Sep 17 00:00:00 2001 From: romanmarkusholler <100381970+romanmarkusholler@users.noreply.github.com> Date: Fri, 5 Jan 2024 14:59:43 +0100 Subject: [PATCH] chore: update justfile --- justfile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 07d6a23..0e057f3 100644 --- a/justfile +++ b/justfile @@ -2,9 +2,8 @@ build: make -C build/ -j 12 zkml-onnx-compiler mlir-assigner -# setsup the build folder +# setup the build folder setup-build: - mkdir -p build cmake -DMLIR_DIR=${MLIR_DIR} -DONNX_USE_PROTOBUF_SHARED_LIBS=ON -DCMAKE_BUILD_TYPE=Release -Bbuild -S. # runs only the small model tests (single onnx operations) @@ -26,3 +25,11 @@ run-basic-mnist-dot: build ./build/bin/mlir-assigner -b mlir-assigner/tests/Models/BasicMnist/DotProductBasicMnist.mlir -i mlir-assigner/tests/Models/BasicMnist/DotProductBasicMnist.json -e pallas -c circuit -t table --print_circuit_output --check rm circuit rm table + +# setup the build folder for blueprint tests +setup-build-bptests: + cmake -DMLIR_DIR=${MLIR_DIR} -DBUILD_SHARED_LIBS=OFF -DBLUEPRINT_PLACEHOLDER_PROOF_GEN=TRUE -DBUILD_BLUEPRINT_TESTS=TRUE -Bbuild -S. + +# build blueprint fixedpoint tester test +buildbpfptester: + make -C build/ -j 12 blueprint_algebra_fixedpoint_plonk_tester_test