Files
rocm-systems/tests/conftest.py
T

99 rader
3.0 KiB
Python
Normal vy Historik

import subprocess
from importlib.machinery import SourceFileLoader
from unittest.mock import patch
2025-02-20 17:51:57 -05:00
import pytest
rocprof_compute = SourceFileLoader("rocprof-compute", "src/rocprof-compute").load_module()
2025-02-20 17:51:57 -05:00
def pytest_addoption(parser):
parser.addoption(
"--call-binary",
action="store_true",
default=False,
help="Call standalone binary instead of main function during tests",
)
parser.addoption(
"--rocprofiler-sdk-library-path",
type=str,
default="/opt/rocm/lib/librocprofiler-sdk.so",
help="Path to the rocprofiler-sdk library",
)
@pytest.fixture
def binary_handler_profile_rocprof_compute(request):
2025-04-02 20:32:13 -04:00
def _handler(
config, workload_dir, options=[], check_success=True, roof=False, app_name="app_1"
):
if request.config.getoption("--rocprofiler-sdk-library-path"):
options.extend(
[
"--rocprofiler-sdk-library-path",
request.config.getoption("--rocprofiler-sdk-library-path"),
],
)
if request.config.getoption("--call-binary"):
baseline_opts = [
"build/rocprof-compute.bin",
"profile",
"-n",
2025-04-02 20:32:13 -04:00
app_name,
"-VVV",
]
if not roof:
baseline_opts.append("--no-roof")
process = subprocess.run(
baseline_opts
+ options
+ ["--path", workload_dir, "--"]
2025-04-02 20:32:13 -04:00
+ config[app_name],
text=True,
)
# verify run status
if check_success:
assert process.returncode == 0
return process.returncode
else:
2025-04-02 20:32:13 -04:00
baseline_opts = ["rocprof-compute", "profile", "-n", app_name, "-VVV"]
if not roof:
baseline_opts.append("--no-roof")
with pytest.raises(SystemExit) as e:
with patch(
"sys.argv",
baseline_opts
+ options
+ ["--path", workload_dir, "--"]
2025-04-02 20:32:13 -04:00
+ config[app_name],
):
rocprof_compute.main()
# verify run status
if check_success:
assert e.value.code == 0
return e.value.code
return _handler
@pytest.fixture
def binary_handler_analyze_rocprof_compute(request):
def _handler(arguments):
if request.config.getoption("--call-binary"):
process = subprocess.run(
["build/rocprof-compute.bin", *arguments],
text=True,
)
return process.returncode
else:
with pytest.raises(SystemExit) as e:
with patch(
"sys.argv",
["rocprof-compute", *arguments],
):
rocprof_compute.main()
return e.value.code
return _handler