aboutsummaryrefslogtreecommitdiffhomepage
path: root/cuda_types
diff options
context:
space:
mode:
authorAndrzej Janik <[email protected]>2022-01-07 04:20:33 +0100
committerAndrzej Janik <[email protected]>2022-01-07 04:20:33 +0100
commit869efbe0e2597d130a973d38d0d9bbdb70a67874 (patch)
tree347bee64790847828ab412c4ccc4bfe66f8520c6 /cuda_types
parent9390db962bf228902c5c63ed2d2861d820d18210 (diff)
downloadZLUDA-869efbe0e2597d130a973d38d0d9bbdb70a67874.tar.gz
ZLUDA-869efbe0e2597d130a973d38d0d9bbdb70a67874.zip
Move zluda_dump to the new CUDA infrastructure
Diffstat (limited to 'cuda_types')
-rw-r--r--cuda_types/Cargo.toml8
-rw-r--r--cuda_types/src/lib.rs3
2 files changed, 11 insertions, 0 deletions
diff --git a/cuda_types/Cargo.toml b/cuda_types/Cargo.toml
new file mode 100644
index 0000000..e779830
--- /dev/null
+++ b/cuda_types/Cargo.toml
@@ -0,0 +1,8 @@
+[package]
+name = "cuda_types"
+version = "0.0.0"
+authors = ["Andrzej Janik <[email protected]>"]
+edition = "2018"
+
+[dependencies]
+cuda_base = { path = "../cuda_base" }
diff --git a/cuda_types/src/lib.rs b/cuda_types/src/lib.rs
new file mode 100644
index 0000000..6d24020
--- /dev/null
+++ b/cuda_types/src/lib.rs
@@ -0,0 +1,3 @@
+use cuda_base::cuda_type_declarations;
+
+cuda_type_declarations!(); \ No newline at end of file