fd3d97287c
* Page migration reporting support * Page migration: Update parser and reporting Container does not lave latest KFD header, so CI might fail * Add kfd_ioctl.h * Formatting * Update get_key - get key was not used (and shouldn't be), so delete it * clang-tidy fixes * Tests for page migration * Apply suggestions from code review Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update tests/bin/page-migration/CMakeLists.txt Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update page-migration test app - add hipHostRegister to register mmap'ed allocation with HIP - misc cleanup and reorg - remove HSA_XNACK=1 from test env * Update lib/rocprofiler-sdk/tests/page_migration.cpp - fix compilation error * Minor updates (reorg, rename) * Page migration reporting support * Page migration: Update parser and reporting Container does not lave latest KFD header, so CI might fail * Update page migration tests, fix trigger types * Page Migration Tracing Support Refactoring (#753) * Reorganization * Update page migration init/fini * Formatting * Update page_migration.cpp - change logging severity * Skip test if KFD does not support page migration reporting * Rework skipping test if KFD does not support page migration * Fix event trigger enum values * Fix clang-diagnostic-unused-const-variable --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Jonathan R. Madsen <jonathanrmadsen@gmail.com> Co-authored-by: Jonathan R. Madsen <jrmadsen@users.noreply.github.com>
103 γραμμές
3.2 KiB
Python
Εκτελέσιμο Αρχείο
103 γραμμές
3.2 KiB
Python
Εκτελέσιμο Αρχείο
#!/usr/bin/env python3
|
|
|
|
import argparse
|
|
import os
|
|
import sys
|
|
|
|
|
|
class FormatSource(argparse.Action):
|
|
def __call__(self, parser, namespace, values, option_string=None):
|
|
os.system(
|
|
"clang-format-11 -i $(find "
|
|
+ os.path.dirname(__file__)
|
|
+ "/../../samples "
|
|
+ os.path.dirname(__file__)
|
|
+ "/../../source "
|
|
+ os.path.dirname(__file__)
|
|
+ '/../../tests -type f -not -path "'
|
|
+ os.path.dirname(__file__)
|
|
+ "/../../build/*\" | egrep '\.(h|hpp|hh|c|cc|cpp)(|\.in)$')"
|
|
)
|
|
exit(0)
|
|
|
|
|
|
class FormatCMake(argparse.Action):
|
|
def __call__(self, parser, namespace, values, option_string=None):
|
|
os.system(
|
|
"cmake-format -i $(find "
|
|
+ os.path.dirname(__file__)
|
|
+ '/../.. -type f -not -path "'
|
|
+ os.path.dirname(__file__)
|
|
+ '/../../build/*" -not -path "'
|
|
+ os.path.dirname(__file__)
|
|
+ "/../../external/*\" | egrep 'CMakeLists.txt|\.cmake$')"
|
|
)
|
|
exit(0)
|
|
|
|
|
|
class FormatPython(argparse.Action):
|
|
def __call__(self, parser, namespace, values, option_string=None):
|
|
os.system("black " + os.path.dirname(__file__) + "/../..")
|
|
exit(0)
|
|
|
|
|
|
class FormatAll(argparse.Action):
|
|
def __call__(self, parser, namespace, values, option_string=None):
|
|
os.system(
|
|
"clang-format-11 -i $(find "
|
|
+ os.path.dirname(__file__)
|
|
+ "/../../samples "
|
|
+ os.path.dirname(__file__)
|
|
+ "/../../source "
|
|
+ os.path.dirname(__file__)
|
|
+ '/../../tests -type f -not -path "'
|
|
+ os.path.dirname(__file__)
|
|
+ "/../../build/*\" | egrep '\.(h|hpp|hh|c|cc|cpp)(|\.in)$')"
|
|
)
|
|
os.system(
|
|
"cmake-format -i $(find "
|
|
+ os.path.dirname(__file__)
|
|
+ '/../.. -type f -not -path "'
|
|
+ os.path.dirname(__file__)
|
|
+ '/../../build/*" -not -path "'
|
|
+ os.path.dirname(__file__)
|
|
+ "/../../external/*\" | egrep 'CMakeLists.txt|\.cmake$')"
|
|
)
|
|
os.system("black " + os.path.dirname(__file__) + "/../..")
|
|
exit(0)
|
|
|
|
|
|
class InstallDepsUbuntu(argparse.Action):
|
|
def __call__(self, parser, namespace, values, option_string=None):
|
|
os.system(
|
|
"sudo apt-get update; \
|
|
sudo apt-get install -y python3-pip software-properties-common wget curl clang-format-11; \
|
|
python3 -m pip install -U cmake-format; \
|
|
python -m pip install --upgrade pip; \
|
|
python -m pip install black"
|
|
)
|
|
exit(0)
|
|
|
|
|
|
parser = argparse.ArgumentParser(description="ROCProfiler Formatter")
|
|
parser.add_argument(
|
|
"-ud",
|
|
"--ubuntu-deps",
|
|
nargs=0,
|
|
help="Install Formatting dependencies",
|
|
action=InstallDepsUbuntu,
|
|
)
|
|
parser.add_argument(
|
|
"-s", "--source", nargs=0, help="format source files", action=FormatSource
|
|
)
|
|
parser.add_argument(
|
|
"-c", "--cmake", nargs=0, help="format cmake files", action=FormatCMake
|
|
)
|
|
parser.add_argument(
|
|
"-p", "--python", nargs=0, help="format python files", action=FormatPython
|
|
)
|
|
parser.add_argument(
|
|
"-a", "--all", nargs=0, help="format cmake, source and python files", action=FormatAll
|
|
)
|
|
parser.parse_args()
|