2024-04-12 13:51:44 -07:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
2025-09-11 12:14:27 +05:30
|
|
|
# MIT License
|
|
|
|
|
#
|
|
|
|
|
# Copyright (c) 2024-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.
|
|
|
|
|
|
|
|
|
|
|
2024-04-04 06:49:17 -05:00
|
|
|
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):
|
2026-01-27 10:27:54 -08:00
|
|
|
os.system("sudo apt-get update; \
|
2024-04-04 06:49:17 -05:00
|
|
|
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; \
|
2026-01-27 10:27:54 -08:00
|
|
|
python -m pip install black")
|
2024-04-04 06:49:17 -05:00
|
|
|
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()
|