Skip to content
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

feat!: Remove opcode supported from the backend #3889

Merged
merged 1 commit into from
Jan 10, 2024
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
4 changes: 1 addition & 3 deletions barretenberg/cpp/src/barretenberg/bb/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -395,9 +395,7 @@ void acvm_info(const std::string& output_path)
"language": {
"name" : "PLONK-CSAT",
"width" : 3
},
"opcodes_supported" : ["arithmetic", "directive", "brillig", "memory_init", "memory_op"],
"black_box_functions_supported" : ["and", "xor", "range", "sha256", "blake2s", "keccak256", "keccak_f1600", "schnorr_verify", "pedersen", "pedersen_hash", "ecdsa_secp256k1", "ecdsa_secp256r1", "fixed_base_scalar_mul", "recursive_aggregation"]
}
})";

size_t length = strlen(jsonData);
Expand Down
6 changes: 0 additions & 6 deletions noir/tooling/backend_interface/src/cli/info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,6 @@ pub(crate) struct InfoCommand {
#[derive(Deserialize)]
struct InfoResponse {
language: LanguageResponse,
#[allow(dead_code)]
#[deprecated(note = "This field is deprecated and will be removed in the future")]
opcodes_supported: Vec<String>,
#[allow(dead_code)]
#[deprecated(note = "This field is deprecated and will be removed in the future")]
black_box_functions_supported: Vec<String>,
}

#[derive(Deserialize)]
Expand Down