Skip to content

Commit

Permalink
Start rewriting PTX parser
Browse files Browse the repository at this point in the history
  • Loading branch information
vosen committed Aug 14, 2024
1 parent 872054a commit a05bee9
Show file tree
Hide file tree
Showing 8 changed files with 2,849 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
[workspace]

resolver = "2"

members = [
"cuda_base",
"cuda_types",
Expand All @@ -15,6 +17,9 @@ members = [
"zluda_redirect",
"zluda_ml",
"ptx",
"gen",
"gen_impl",
"ptx_parser"
]

default-members = ["zluda_lib", "zluda_ml", "zluda_inject", "zluda_redirect"]
Expand Down
15 changes: 15 additions & 0 deletions gen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[package]
name = "gen"
version = "0.1.0"
edition = "2021"

[lib]
proc-macro = true

[dependencies]
gen_impl = { path = "../gen_impl" }
convert_case = "0.6.0"
rustc-hash = "2.0.0"
syn = "2.0.67"
quote = "1.0"
proc-macro2 = "1.0.86"
Loading

0 comments on commit a05bee9

Please sign in to comment.