diff options
author | Andrzej Janik <[email protected]> | 2022-01-07 04:20:33 +0100 |
---|---|---|
committer | Andrzej Janik <[email protected]> | 2022-01-07 04:20:33 +0100 |
commit | 869efbe0e2597d130a973d38d0d9bbdb70a67874 (patch) | |
tree | 347bee64790847828ab412c4ccc4bfe66f8520c6 /cuda_types | |
parent | 9390db962bf228902c5c63ed2d2861d820d18210 (diff) | |
download | ZLUDA-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.toml | 8 | ||||
-rw-r--r-- | cuda_types/src/lib.rs | 3 |
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 |