-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (69 loc) · 1.82 KB
/
pyproject.toml
File metadata and controls
75 lines (69 loc) · 1.82 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["setuptools>=75", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-data = { "ScaFFold" = [
"package_data/weights_ins145.csv",
"fractals/var0.15/3DIFS_param/*",
"configs/*",
] }
include-package-data = true
[tool.setuptools.packages.find]
include = ["ScaFFold*"]
[tool.ruff]
line-length = 88
exclude = [
"__pycache__",
".venv",
".venvs",
"build",
"dist",
"**/*.ipynb",
"ScaFFold/viz/**/*.py",
]
[tool.ruff.lint]
select = ["F", "E", "I"] # include "I" to enable import rules (isort), "F" for PEP8 and style, and "E" for Logic and correctness (unused imports etc.)
fixable = ["I"] # allow Ruff to reorder imports
ignore = ["E501"] # this is handled by ruff format
[project]
name = "ScaFFold"
version = "0.1.0"
description = "ScaFFold: Scalable AI Benchmark for HPC-AI Systems"
readme = "README.md"
authors = [
{ name = "Patrick Miles", email = "patrickrobertmiles@gmail.com"},
{ name = "Senhe Hao", email = "hao3@llnl.gov" },
{ name = "Nikoli Dryden", email = "dryden1@llnl.gov" },
{ name = "Brian Van Essen", email = "vanessen1@llnl.gov" },
{ name = "Olga Pearce", email = "pearce8@llnl.gov" },
]
license = { file = "LICENSE" }
dependencies = [
"hpc-launcher>=1.0.4",
"matplotlib>=3.9.4",
"numpy>=1.26.4",
"numba>=0.60.0",
"tqdm>=4.67.1",
"wandb>=0.19.6",
"PyYAML>=6.0.2",
"distconv @ git+https://github.com/LBANN/DistConv.git@232cba6",
]
requires-python = ">=3.9"
[project.optional-dependencies]
profiling = [
"pybind11>=3.0.0"
]
cuda = [
"torch==2.10.0+cu129",
"mpi4py==4.1.1",
]
rocm = [
"torch==2.10.0+rocm7.1",
"mpi4py==4.1.1",
]
rocmwci = [
"torch==2.10.0+rocm710",
"mpi4py==4.1.1+mpich.9.1.0",
]
[project.entry-points.console_scripts]
scaffold = "ScaFFold.cli:main"