-
Notifications
You must be signed in to change notification settings - Fork 219
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Passing arrays from memory into brillig adds constraints #4262
Closed
Comments
TomAFrench
added a commit
to AztecProtocol/aztec-packages
that referenced
this issue
Feb 6, 2024
This PR allows the `BrilligSolver` to read inputs directly from ACIR memory. This allows us to remove constraints which are generated purely to load values out of memory to pass into ACIR. Resolves noir-lang/noir#4262
AztecBot
pushed a commit
to AztecProtocol/barretenberg
that referenced
this issue
Feb 7, 2024
This PR allows the `BrilligSolver` to read inputs directly from ACIR memory. This allows us to remove constraints which are generated purely to load values out of memory to pass into ACIR. Resolves noir-lang/noir#4262
TomAFrench
added a commit
to AztecProtocol/aztec-packages
that referenced
this issue
Feb 7, 2024
This PR allows the `BrilligSolver` to read inputs directly from ACIR memory. This allows us to remove constraints which are generated purely to load values out of memory to pass into ACIR. Resolves noir-lang/noir#4262
michaelelliot
pushed a commit
to Swoir/noir_rs
that referenced
this issue
Feb 28, 2024
…l#4460) This PR allows the `BrilligSolver` to read inputs directly from ACIR memory. This allows us to remove constraints which are generated purely to load values out of memory to pass into ACIR. Resolves noir-lang/noir#4262
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Copying across from DMs:
This issue is stemming from the fact that we want to pass values in memory to the brillig VM however the only method we have to do this is by reading every single value out of memory and into the witness map which ends up creating a boatload of constraints.
Originally posted by @TomAFrench in #4244 (comment)
The text was updated successfully, but these errors were encountered: