31b4de1a38
- Update filenames. - Update executable to `rocprof-compute` - Update update package to `rocprofiler-compute` - Update name in application output and logs - Update name in README files - Update testing and workflows --------- Signed-off-by: Xuan Chen <xuchen@amd.com>
59 строки
797 B
TOML
59 строки
797 B
TOML
[tool.black]
|
|
line-length = 90
|
|
target-version = ['py38', 'py39']
|
|
include = '\.py$'
|
|
exclude = '''
|
|
(
|
|
/(
|
|
\.eggs
|
|
| \.git
|
|
| \.github
|
|
| \.tox
|
|
| \.venv
|
|
| \.misc
|
|
| \.vscode
|
|
| \.pyc
|
|
| dist
|
|
| external
|
|
| .pytest_cache
|
|
| build
|
|
| build-rocprof_compute
|
|
)/
|
|
)
|
|
'''
|
|
[tool.pytest.ini_options]
|
|
addopts = [
|
|
"--import-mode=importlib",
|
|
]
|
|
|
|
pythonpath = [
|
|
".",
|
|
"src",
|
|
"src/rocprof_compute_soc",
|
|
"src/utils",
|
|
"src/rocprof_compute_analyze/utils",
|
|
"tests"
|
|
]
|
|
|
|
markers = [
|
|
"kernel_execution",
|
|
"block",
|
|
"misc",
|
|
"mem",
|
|
"sort",
|
|
"join",
|
|
"verbosity",
|
|
"dispatch",
|
|
"list_metrics",
|
|
"filter_block",
|
|
"filter_kernel",
|
|
"dispatch",
|
|
"normal_unit",
|
|
"max_stat",
|
|
"time_unit",
|
|
"decimal",
|
|
"col",
|
|
"kernel_verbose",
|
|
"serial",
|
|
]
|