-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.63 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (48 loc) · 1.63 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[project]
name = "mlir-rl-artifact"
version = "0.1.0"
description = "A deep reinforcement learning system for loop nest optimization in MLIR"
authors = [
{name = "Mohammed Tirichine",email = "km_tirichine@esi.dz"},
{name = "Nassim Ameur",email = "kn_ameur@esi.dz"},
{name = "Iheb Nassim Aouadj",email = "nassimiheb.aouadj@gmail.com"},
{name = "Nazim Bendib",email = "jn_bendib@esi.dz"},
{name = "Bouchama Djad",email = "bouchamadjad@gmail.com"},
{name = "Rafik Bouloudene",email = "rafikobouloudene@gmail.com"},
{name = "Riyadh Baghdadi",email = "baghdadi@nyu.edu"}
]
readme = "README.md"
requires-python = ">=3.11,<3.13"
dependencies = [
"numpy (>=1.19.5,<=1.26)",
"tqdm (>=4.67.1,<5.0.0)",
"typeguard (>=4.4.4,<5.0.0)",
"pytz (>=2025.2,<2026.0)",
"python-dotenv (>=1.2.1,<2.0.0)",
"monkeytype (>=23.3.0,<24.0.0)",
"pyyaml (>=5.3.1,<=6.0.1)",
"matplotlib (>=3.10.7,<4.0.0)",
"pandas (>=2.3.3,<3.0.0)",
"tabulate (>=0.9.0,<0.10.0)",
"markdown-pdf (>=1.10,<2.0)",
"torch (>=2.8.0,<3.0.0)",
"torchvision (>=0.23.0,<0.24.0)",
"mkdocstrings[python] (>=0.30.1,<0.31.0)",
"mkdocs-material (>=9.7.0,<10.0.0)",
"black (>=25.11.0,<26.0.0)",
"dask-jobqueue (>=0.9.0,<0.10.0)"
]
[project.scripts]
train = 'train:main'
evaluate = 'evaluate:main'
baseline = 'baseline:main'
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.source]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
priority = "explicit"
[tool.poetry.dependencies]
torch = {source = "pytorch-cpu"}
torchvision = {source = "pytorch-cpu"}