-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 786 Bytes
/
Copy pathpyproject.toml
File metadata and controls
48 lines (44 loc) · 786 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
42
43
44
45
46
47
48
[project]
name = "optimum_amd_utils"
description = "A collections of tools for use with optimum-amd"
authors = [
{ name = "Nicholas J. Fraser", email = "icanlosh@gmail.com" },
]
dependencies = [
"optimum-amd",
"brevitas >= 0.10.2",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest",
]
[build-system]
requires = [
"setuptools >= 61.0.0",
"wheel",
"setuptools_scm[toml]>=6.2"
]
build.backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.pytest.ini_options]
#addopts = "-m short"
markers = [
"short",
"long",
"very_long",
"cpu",
"gpu",
"acc",
"acc_offload",
"acc_gpus",
"run",
"ppl",
"recommended",
"opt",
"small_models",
"large_models",
]
testpaths = [
"test",
]