Skip to content

Commit 4d2a7c9

Browse files
SevenarthJamieCunliffejacobbramley
authored andcommitted
Add SVE support to stdarch-verify
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>
1 parent fea8f92 commit 4d2a7c9

File tree

14 files changed

+6187
-0
lines changed

14 files changed

+6187
-0
lines changed

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ members = [
66
"crates/std_detect",
77
"crates/stdarch-gen-arm",
88
"crates/stdarch-gen-loongarch",
9+
"crates/stdarch-gen",
10+
"crates/stdarch-gen2",
911
"crates/intrinsic-test",
1012
"examples/"
1113
]

crates/stdarch-gen2/Cargo.toml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[package]
2+
name = "stdarch-gen2"
3+
version = "0.1.0"
4+
authors = ["Luca Vizzarro <luca.vizzarro@arm.com>",
5+
"Jamie Cunliffe <Jamie.Cunliffe@arm.com>",
6+
"Adam Gemmell <Adam.Gemmell@arm.com",
7+
"Jacob Bramley <jacob.bramley@arm.com>"]
8+
license = "MIT OR Apache-2.0"
9+
edition = "2021"
10+
11+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
12+
13+
[dependencies]
14+
itertools = "0.10"
15+
lazy_static = "1.4.0"
16+
proc-macro2 = "1.0"
17+
quote = "1.0"
18+
regex = "1.5"
19+
serde = { version = "1.0", features = ["derive"] }
20+
serde_with = "1.14"
21+
serde_yaml = "0.8"
22+
walkdir = "2.3.2"

0 commit comments

Comments
 (0)