Skip to content

Commit aaae734

Browse files
authored
[Ingress][Torch-MLIR] Bump torch-mlir and deduplicate lines in pyproject (#26)
Supersedes #25 and, like it, fixes #14.
1 parent fa58880 commit aaae734

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

pyproject.toml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,27 @@ dependencies = [
77
]
88

99
[project.optional-dependencies]
10+
ingress_torch_mlir = [
11+
"torch-mlir==20251122.639"
12+
]
1013
# Additional "targets" which pull in optional dependencies -- use `uv sync --extra TARGET`
1114
ingress_torch_cpu = [
1215
"torch==v2.8.0+cpu",
13-
"torch-mlir==20251003.589"
16+
"lighthouse[ingress_torch_mlir]"
1417
]
1518
ingress_torch_nvidia = [
1619
"torch==2.8.0", # Nvidia-enabled version of torch
17-
"torch-mlir==20251003.589"
20+
"lighthouse[ingress_torch_mlir]"
1821
]
1922
ingress_torch_rocm = [
2023
"torch==2.8.0+rocm6.4", # AMD-enabled version of torch
21-
"torch-mlir==20251003.589",
22-
"pytorch_triton_rocm" # Transitive dependency listed explicitly so that we can state which package repository it is supposed to come from
24+
"pytorch_triton_rocm", # Transitive dependency listed explicitly so that we can state which package repository it is supposed to come from
25+
"lighthouse[ingress_torch_mlir]"
2326
]
2427
ingress_torch_xpu = [
2528
"torch==2.8.0+xpu", # Intel-enabled version of torch
26-
"torch-mlir==20251003.589",
27-
"pytorch_triton_xpu" # Transitive dependency listed explicitly so that we can state which package repository it is supposed to come from
29+
"pytorch_triton_xpu", # Transitive dependency listed explicitly so that we can state which package repository it is supposed to come from
30+
"lighthouse[ingress_torch_mlir]"
2831
]
2932

3033
[tool.uv]

0 commit comments

Comments
 (0)