Skip to content

test_amd_telemetry

ipw.tests.integration.test_amd_telemetry

Tier 3 integration tests for AMD GPU telemetry.

These tests require actual AMD GPU hardware with ROCm drivers. They are skipped unless rocm-smi is available.

test_rocm_smi_available()

Verify rocm-smi is accessible.

Source code in intelligence-per-watt/src/ipw/tests/integration/test_amd_telemetry.py
def test_rocm_smi_available() -> None:
    """Verify rocm-smi is accessible."""
    assert shutil.which("rocm-smi") is not None

test_amd_telemetry_collection()

Placeholder: collect AMD GPU telemetry readings.

Source code in intelligence-per-watt/src/ipw/tests/integration/test_amd_telemetry.py
def test_amd_telemetry_collection() -> None:
    """Placeholder: collect AMD GPU telemetry readings."""
    pytest.skip("Full AMD integration test not yet implemented")