-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 825 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 825 Bytes
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
39
40
41
[project]
name = "race-detector-experiments"
version = "0.1.0"
requires-python = ">=3.12"
dependencies = [
"triton-viz",
"torch",
"pytest>=9.0.2",
]
[tool.uv]
dev-dependencies = []
environments = ["sys_platform == 'linux' and python_version >= '3.12'"]
index-strategy = "unsafe-best-match"
override-dependencies = [
"neuronx-cc; python_version < '0'",
"markupsafe>=3.0,<3.0.3",
]
[[tool.uv.index]]
name = "pytorch-rocm"
url = "https://download.pytorch.org/whl/rocm7.0"
[tool.uv.sources]
triton-viz = { workspace = true }
torch = { index = "pytorch-rocm" }
triton-rocm = { index = "pytorch-rocm" }
[tool.uv.workspace]
members = ["submodules/triton-viz"]
exclude = ["submodules/aiter"]
[tool.setuptools]
packages = []
[project.optional-dependencies]
test = [
"pytest",
"numpy",
"torch",
]