mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-14 10:09:41 +00:00
* Pre-commit in CI
* Specify python version, and install dos2unix for remod
* Refactor remod hook to correctly install dependencies
* Run pre-commit
[ROCm/composable_kernel commit: 8a4cd32d86]
14 lines
286 B
Python
Executable File
14 lines
286 B
Python
Executable File
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")
|