Fix SPI block counter limit (#780)

* Fix SPI counter collection limit

* Update counter collection limits from aqlprofile

* Remove special handling for MI 350 SPI pipe counters

[ROCm/rocprofiler-compute commit: 6e1bbb5efb]
Bu işleme şunda yer alıyor:
vedithal-amd
2025-06-27 14:07:56 -04:00
işlemeyi yapan: GitHub
ebeveyn 2ffaf5b453
işleme 86e243201e
3 değiştirilmiş dosya ile 9 ekleme ve 49 silme
-15
Dosyayı Görüntüle
@@ -157,21 +157,6 @@ def extract_counter_info_extra_config_input_yaml(
return None
def is_spi_pipe_counter(counter):
for pattern in spi_pipe_counter_regexs:
if re.match(pattern, counter):
return True
return False
def get_base_spi_pipe_counter(counter):
for pattern in spi_pipe_counter_regexs:
match = re.match(pattern, counter)
if match:
return match.group(1)
return ""
def using_v1():
return "ROCPROF" in os.environ.keys() and os.environ["ROCPROF"].endswith("rocprof")