mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-03-22 08:07:38 +00:00
* chore(copyright): update copyright header for tile_engine directory * chore(copyright): update copyright header for script directory --------- Co-authored-by: Vidyasagar Ananthan <vanantha@amd.com>
17 lines
383 B
Python
Executable File
17 lines
383 B
Python
Executable File
# Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
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")
|