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

SVE types and intrinsics #1509

Draft
wants to merge 6 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Generator for SVE intrinsics.
Co-authored-by: Jamie Cunliffe <[email protected]>
Co-authored-by: Adam Gemmell <[email protected]>
Co-authored-by: Jacob Bramley <[email protected]>
  • Loading branch information
4 people committed Dec 5, 2023
commit 34b676f83cd49fa4a5bcb63e5d93999793f49b45
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ members = [
"crates/core_arch",
"crates/std_detect",
"crates/stdarch-gen",
"crates/stdarch-gen2",
"crates/intrinsic-test",
"examples/"
]
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 <[email protected]>",
"Jamie Cunliffe <[email protected]>",
"Adam Gemmell <[email protected]",
"Jacob Bramley <[email protected]>"]
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