Skip to content
This repository has been archived by the owner on Apr 9, 2024. It is now read-only.

chore: add cpp codegen for ACIR [DO NOT MERGE] #430

Closed
wants to merge 31 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
d314f02
chore: add cpp codegen for ACIR
TomAFrench Jul 12, 2023
182d86e
chore: witness cpp code
kobyhallx Jul 13, 2023
0c299d6
feat: use bincode as format
kobyhallx Jul 13, 2023
4326d02
chore: make bincode default
kobyhallx Jul 13, 2023
86f4113
chore: pulling bincode out to workspace
kobyhallx Jul 13, 2023
11e0151
chore: Update cpp-codegen branch [DO NOT MERGE INTO MASTER] (#451)
kevaundray Jul 26, 2023
b27f859
Merge branch 'master' into cpp-codegen
TomAFrench Jul 26, 2023
81be94a
chore: fix merge
TomAFrench Jul 26, 2023
911b039
Merge branch 'master' into cpp-codegen
TomAFrench Jul 26, 2023
254daad
chore: fix stdlib test
TomAFrench Jul 26, 2023
bdf201e
chore: regenerate codegen
TomAFrench Jul 26, 2023
5cddb8b
Merge branch 'master' into cpp-codegen
guipublic Jul 26, 2023
fef9c68
chore: remove block/ram/rom opcodes (#460)
guipublic Jul 27, 2023
0efddaa
Merge branch 'master' into cpp-codegen
kevaundray Aug 30, 2023
7e3bf4f
cargo.lock
kevaundray Aug 30, 2023
c7ebbe6
fix serde test
kevaundray Aug 30, 2023
28e178b
Merge remote-tracking branch 'origin/master' into cpp-codegen
kevaundray Aug 30, 2023
57a6855
fix build
kevaundray Aug 30, 2023
8458278
use legacy encoding for bincode
kevaundray Aug 30, 2023
35731ab
adds low and high parameters to scalar mul
kevaundray Sep 7, 2023
2048aee
fix
kevaundray Sep 7, 2023
2738d70
fix serialization
kevaundray Sep 7, 2023
3ae5c39
fix acv_js test
kevaundray Sep 7, 2023
e892c0a
Merge branch 'kw/fix-scalar-mul' into cpp-codegen
kevaundray Sep 7, 2023
af14c73
update acir.hpp
kevaundray Sep 7, 2023
2cebf01
update brillig
kevaundray Sep 7, 2023
6958cbb
modify interface
kevaundray Sep 7, 2023
a990127
Merge branch 'kw/fix-scalar-mul' into cpp-codegen
kevaundray Sep 7, 2023
f125eea
clippy
kevaundray Sep 7, 2023
46d75ff
modified acir file
kevaundray Sep 7, 2023
7761259
Merge remote-tracking branch 'origin/master' into cpp-codegen
kevaundray Sep 8, 2023
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
2 changes: 2 additions & 0 deletions acir/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ flate2 = "1.0.24"
serde_json = "1.0"
strum = "0.24"
strum_macros = "0.24"
serde-reflection = "0.3.6"
serde-generate = "0.25.1"

[features]
default = ["bn254"]
Expand Down
Loading