blob: fbf5dd298b8f98651d532db20a449c31c928c46e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
[package]
name = "ptx"
version = "0.0.0"
authors = ["Andrzej Janik <vosen@vosen.pl>"]
edition = "2018"
[lib]
[dependencies]
hip_common = { path = "../hip_common" }
zluda_llvm = { path = "../zluda_llvm" }
lalrpop-util = "0.20"
regex = "1"
thiserror = "1.0"
num-traits = "0.2"
rustc-hash = "1.1"
cpp_demangle = "0.3.5"
paste = "1.0"
bit-vec = "0.6.3"
either = "1.9"
[dependencies.half]
version = "1.8"
features = ["num-traits"]
[dev-dependencies]
cuda_base = { path = "../cuda_base" }
cuda_types = { path = "../cuda_types" }
hip_runtime-sys = { path = "../hip_runtime-sys" }
hiprt-sys = { path = "../hiprt-sys" }
comgr = { path = "../comgr" }
tempfile = "3"
libloading = "0.8"
lazy_static = "1.4.0"
[build-dependencies.lalrpop]
version = "0.20"
features = ["lexer"]
|