mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-04-19 22:39:03 +00:00
Pre-commit in CI (#3029)
* Pre-commit in CI * Specify python version, and install dos2unix for remod * Refactor remod hook to correctly install dependencies * Run pre-commit
This commit is contained in:
@@ -13,9 +13,6 @@ echo "I: Creating and activating virtual environment for pre-commit..."
|
||||
python3 -m venv "$(dirname "$0")/../.venv"
|
||||
source "$(dirname "$0")/../.venv/bin/activate"
|
||||
|
||||
echo "I: Installing tools required for pre-commit checks..."
|
||||
run_and_check pip install dos2unix
|
||||
run_and_check pip install clang-format==18.1.3
|
||||
echo "I: Installing pre-commit in virtual environment..."
|
||||
run_and_check pip install pre-commit
|
||||
run_and_check pre-commit install
|
||||
|
||||
13
script/remod_for_ck_tile.py
Executable file
13
script/remod_for_ck_tile.py
Executable file
@@ -0,0 +1,13 @@
|
||||
import os
|
||||
|
||||
root_dir = os.getcwd()
|
||||
ck_tile_include = root_dir + "/include/ck_tile"
|
||||
ck_tile_example = root_dir + "/example/ck_tile"
|
||||
|
||||
# Run for include
|
||||
os.chdir(ck_tile_include)
|
||||
_ = os.system("python remod.py")
|
||||
|
||||
# Run for example
|
||||
os.chdir(ck_tile_example)
|
||||
_ = os.system("python remod.py")
|
||||
@@ -1,7 +0,0 @@
|
||||
#!/bin/bash
|
||||
# Copyright © Advanced Micro Devices, Inc., or its affiliates.
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
# Run remod.py in both required locations
|
||||
(cd include/ck_tile/ && python3 remod.py)
|
||||
(cd example/ck_tile/ && python3 remod.py)
|
||||
Reference in New Issue
Block a user