Remove rocscope related code and add deprecation warning for mongo db usecase (#744)

* Remove rocscope related code

* Add deprecation warning for database update mode which is used for grafana and mongodb functionality

[ROCm/rocprofiler-compute commit: cdd41dee40]
Этот коммит содержится в:
vedithal-amd
2025-06-12 14:21:24 -04:00
коммит произвёл GitHub
родитель a153c96c7b
Коммит 9e743cdff2
14 изменённых файлов: 35 добавлений и 598 удалений
+2 -6
Просмотреть файл
@@ -48,7 +48,6 @@ from utils.utils import (
pc_sampling_prof,
print_status,
run_prof,
run_rocscope,
)
@@ -430,11 +429,8 @@ class RocProfCompute_Base:
)
)
elif self.__profiler == "rocscope":
run_rocscope(self.__args, fname)
else:
# TODO: Finish logic
console_error("Profiler not supported")
# TODO: Finish logic
console_error("Profiler not supported")
if self.__pc_sampling == True and self.__profiler in (
"rocprofv3",
-58
Просмотреть файл
@@ -1,58 +0,0 @@
##############################################################################bl
# MIT License
#
# Copyright (c) 2021 - 2025 Advanced Micro Devices, Inc. All Rights Reserved.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
##############################################################################el
from rocprof_compute_profile.profiler_base import RocProfCompute_Base
from utils.logger import console_log, demarcate
class rocscope_profiler(RocProfCompute_Base):
def __init__(self, profiling_args, profiler_mode, soc, supported_archs):
super().__init__(profiling_args, profiler_mode, soc, supported_archs)
# -----------------------
# Required child methods
# -----------------------
@demarcate
def pre_processing(self):
"""Perform any pre-processing steps prior to profiling."""
self.__profiler = "rocscope"
console_log("profiling", "pre-processing using %s profiler" % self.__profiler)
# TODO: Finish implementation
@demarcate
def run_profiling(self, version, prog):
"""Run profiling."""
console_log(
"profiling", "performing profiling using %s profiler" % self.__profiler
)
# TODO: Finish implementation
@demarcate
def post_processing(self):
"""Perform any post-processing steps prior to profiling."""
console_log(
"profiling",
"performing post-processing using %s profiler" % self.__profiler,
)
# TODO: Finish implementation