Skip to content

Commit 5b8049f

Browse files
SevenarthJamieCunliffejacobbramleyadamgemmell
authored andcommitted
Generator for SVE intrinsics.
Co-authored-by: Jamie Cunliffe <[email protected]> Co-authored-by: Jacob Bramley <[email protected]> Co-authored-by: Luca Vizzarro <[email protected]> Co-authored-by: Adam Gemmell <[email protected]>
1 parent c13e2eb commit 5b8049f

14 files changed

+6197
-0
lines changed

Diff for: Cargo.toml

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@ resolver = "1"
33
members = [
44
"crates/*",
55
"examples"
6+
"crates/stdarch-verify",
7+
"crates/core_arch",
8+
"crates/std_detect",
9+
"crates/stdarch-gen-arm",
10+
"crates/stdarch-gen-loongarch",
11+
"crates/stdarch-gen",
12+
"crates/stdarch-gen2",
13+
"crates/intrinsic-test",
14+
"examples/"
15+
]
16+
exclude = [
17+
"crates/wasm-assert-instr-tests"
618
]
719

820
[profile.release]

Diff for: crates/stdarch-gen2/Cargo.toml

+22
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 <[email protected]>",
5+
"Jamie Cunliffe <[email protected]>",
6+
"Adam Gemmell <[email protected]",
7+
"Jacob Bramley <[email protected]>"]
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)