Files
rocm-systems/pyproject.toml
T

77 خطوط
1.0 KiB
TOML

2025-01-02 13:29:47 -08:00
[project]
name = "rocprof_compute"
requires-python = ">=3.8"
[project.optional-dependencies]
developer = [
"black>=22.6.0",
"isort>=5.12.0",
"pre-commit",
]
2022-11-04 14:49:36 -05:00
[tool.black]
line-length = 90
include = '\.py$'
exclude = '''
(
/(
\.eggs
| \.git
| \.github
| \.tox
| \.venv
| \.misc
| \.vscode
| \.pyc
| dist
| external
| .pytest_cache
| build
| build-rocprof_compute
2022-11-04 14:49:36 -05:00
)/
)
'''
2025-01-02 13:29:47 -08:00
[tool.isort]
profile = "black"
2022-11-04 14:49:36 -05:00
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
2022-11-04 14:49:36 -05:00
pythonpath = [
".",
"src",
"src/rocprof_compute_soc",
2022-11-04 14:49:36 -05:00
"src/utils",
"src/rocprof_compute_analyze/utils",
2023-12-18 09:40:53 -06:00
"tests"
2022-11-04 14:49:36 -05:00
]
2023-12-18 09:40:53 -06:00
markers = [
"section",
2023-12-18 09:40:53 -06:00
"kernel_execution",
2024-03-07 16:01:32 -06:00
"block",
2023-12-18 09:40:53 -06:00
"misc",
"mem",
"sort",
"join",
"verbosity",
"dispatch",
2024-02-15 16:18:20 -06:00
"list_metrics",
2024-03-07 15:21:44 -06:00
"filter_block",
2024-02-15 16:18:20 -06:00
"filter_kernel",
"dispatch",
"normal_unit",
2024-02-21 12:49:32 -06:00
"max_stat",
2024-02-15 16:18:20 -06:00
"time_unit",
"decimal",
"col",
"kernel_verbose",
"serial",
2025-04-02 20:32:13 -04:00
"L1_cache",
2025-04-28 11:29:14 -04:00
"num_xcds_spec_class",
"num_xcds_cli_output",
2023-12-18 09:40:53 -06:00
]