blob: e2c4ff8e4086699755a49ee5cd0905cfcc262f21 (
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 = "2021"
[lib]
[dependencies]
ptx_parser = { path = "../ptx_parser" }
llvm_zluda = { path = "../llvm_zluda" }
regex = "1"
rspirv = "0.7"
spirv_headers = "1.5"
quick-error = "1.2"
thiserror = "1.0"
bit-vec = "0.6"
half ="1.6"
bitflags = "1.2"
rustc-hash = "2.0.0"
strum = "0.26"
strum_macros = "0.26"
[dependencies.lalrpop-util]
version = "0.19.12"
features = ["lexer"]
[build-dependencies.lalrpop]
version = "0.19.12"
features = ["lexer"]
[dev-dependencies]
hip_runtime-sys = { path = "../ext/hip_runtime-sys" }
comgr = { path = "../comgr" }
spirv_tools-sys = { path = "../spirv_tools-sys" }
tempfile = "3"
paste = "1.0"
cuda-driver-sys = "0.3.0"
|