Fix incorrect logging in mi_gpu_spec.py (#626)

* Move console logging to logger function to avoid circular dependency in utils module

Signed-off-by: coleramos425 <colramos@amd.com>

* Apply python formatting

Signed-off-by: coleramos425 <colramos@amd.com>

* Remove the default StreamHandler before adding the custom

 If you are not explicitly removing this default handler, it could be causing duplicate outputs.

Signed-off-by: coleramos425 <colramos@amd.com>

* Fix lingering bugs from merge conflict resolution

Signed-off-by: coleramos425 <colramos@amd.com>

* Comply to python formatting and update pre-commit hook helper

Signed-off-by: coleramos425 <colramos@amd.com>

* Removing redundant console_log call as the get_mi300_num_xcds() call, otherwise ALL Mi200 profiling runs will print this message

Signed-off-by: coleramos425 <colramos@amd.com>

---------

Signed-off-by: coleramos425 <colramos@amd.com>

[ROCm/rocprofiler-compute commit: 04f92b72a9]
This commit is contained in:
Cole Ramos
2025-03-25 17:06:37 -05:00
committed by GitHub
parent a851c977c7
commit 088fa6a4ac
31 changed files with 132 additions and 129 deletions
@@ -38,6 +38,11 @@ import config
from argparser import omniarg_parser
from utils import file_io, parser, schema
from utils.logger import (
console_debug,
console_error,
console_log,
console_warning,
demarcate,
setup_console_handler,
setup_file_handler,
setup_logging_priority,
@@ -45,11 +50,6 @@ from utils.logger import (
from utils.mi_gpu_spec import get_gpu_series_dict, parse_mi_gpu_spec
from utils.specs import MachineSpecs, generate_machine_specs
from utils.utils import (
console_debug,
console_error,
console_log,
console_warning,
demarcate,
detect_rocprof,
get_submodules,
get_version,