Skip to content

Commit

Permalink
Add SVE support to stdarch-verify
Browse files Browse the repository at this point in the history
Co-authored-by: Jamie Cunliffe <Jamie.Cunliffe@arm.com>
Co-authored-by: Jacob Bramley <jacob.bramley@arm.com>
Co-authored-by: Luca Vizzarro <Luca.Vizzarro@arm.com>
  • Loading branch information
4 people authored and Jamesbarford committed Dec 18, 2024
1 parent 2a828b8 commit 51a4042
Show file tree
Hide file tree
Showing 14 changed files with 6,197 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@ resolver = "1"
members = [
"crates/*",
"examples"
"crates/stdarch-verify",
"crates/core_arch",
"crates/std_detect",
"crates/stdarch-gen-arm",
"crates/stdarch-gen-loongarch",
"crates/stdarch-gen",
"crates/stdarch-gen2",
"crates/intrinsic-test",
"examples/"
]
exclude = [
"crates/wasm-assert-instr-tests"
]

[profile.release]
Expand Down
22 changes: 22 additions & 0 deletions crates/stdarch-gen2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[package]
name = "stdarch-gen2"
version = "0.1.0"
authors = ["Luca Vizzarro <luca.vizzarro@arm.com>",
"Jamie Cunliffe <Jamie.Cunliffe@arm.com>",
"Adam Gemmell <Adam.Gemmell@arm.com",
"Jacob Bramley <jacob.bramley@arm.com>"]
license = "MIT OR Apache-2.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
itertools = "0.10"
lazy_static = "1.4.0"
proc-macro2 = "1.0"
quote = "1.0"
regex = "1.5"
serde = { version = "1.0", features = ["derive"] }
serde_with = "1.14"
serde_yaml = "0.8"
walkdir = "2.3.2"
Loading

0 comments on commit 51a4042

Please sign in to comment.