|
|
from datetime import datetime |
|
|
import pathlib |
|
|
from pathlib import Path |
|
|
import subprocess |
|
|
import os |
|
|
import copy |
|
|
|
|
|
NS = 'ck_tile' |
|
|
OPS = 'ops' |
|
|
REF = 'ref' |
|
|
OPS_COMMON = 'common' |
|
|
|
|
|
HEADER_COMMON = f"""// SPDX-License-Identifier: MIT |
|
|
// Copyright (c) 2018-{datetime.now().year}, Advanced Micro Devices, Inc. All rights reserved.\n |
|
|
""" |
|
|
|
|
|
|
|
|
def get_module(f, level = 0): |
|
|
all_parts = f.parts |
|
|
return str(all_parts[level]) |
|
|
|
|
|
all_files = [] |
|
|
for p in sorted(Path("./").rglob("*")): |
|
|
if p.suffix == '.hpp': |
|
|
all_files.append(pathlib.PurePath(p)) |
|
|
|
|
|
class submodule_t: |
|
|
def __init__(self): |
|
|
self.m = dict() |
|
|
def push(self, f): |
|
|
if len(f.parents) != 1: |
|
|
mod = get_module(f) |
|
|
|
|
|
if mod == REF: |
|
|
return |
|
|
if mod == OPS: |
|
|
if mod not in self.m.keys(): |
|
|
self.m[mod] = dict() |
|
|
mod2 = get_module(f, 1) |
|
|
if Path(mod2).suffix != '.hpp': |
|
|
|
|
|
if mod2 not in self.m[mod].keys(): |
|
|
self.m[mod][mod2] = list() |
|
|
self.m[mod][mod2].append(f) |
|
|
else: |
|
|
if mod not in self.m.keys(): |
|
|
self.m[mod] = list() |
|
|
self.m[mod].append(f) |
|
|
|
|
|
def gen(self): |
|
|
def gen_header(hpath, include_list): |
|
|
|
|
|
if os.path.exists(str(hpath)): |
|
|
os.remove(str(hpath)) |
|
|
with hpath.open('w') as f: |
|
|
f.write(HEADER_COMMON) |
|
|
f.write('#pragma once\n') |
|
|
f.write('\n') |
|
|
for individual_header in include_list: |
|
|
header_path = NS + '/' + str(individual_header) |
|
|
f.write(f'#include \"{header_path}\"\n') |
|
|
|
|
|
|
|
|
|
|
|
for k, v in self.m.items(): |
|
|
if k == OPS and OPS_COMMON in v.keys(): |
|
|
common_list = copy.deepcopy(v[OPS_COMMON]) |
|
|
|
|
|
for km in v.keys(): |
|
|
if km != OPS_COMMON: |
|
|
v[km].extend(common_list) |
|
|
|
|
|
for k, v in self.m.items(): |
|
|
if k == OPS: |
|
|
for km, kv in v.items(): |
|
|
gen_header(Path(k) / (f'{km}.hpp'), kv) |
|
|
else: |
|
|
gen_header(Path(f'{k}.hpp'), v) |
|
|
|
|
|
|
|
|
submodule = submodule_t() |
|
|
|
|
|
for x in all_files: |
|
|
subprocess.Popen(f'dos2unix {str(x)}', shell=True) |
|
|
cmd = f'clang-format-18 -style=file -i {str(x)}' |
|
|
|
|
|
|
|
|
subprocess.Popen(cmd, shell=True) |
|
|
submodule.push(x) |
|
|
|
|
|
submodule.gen() |
|
|
|
|
|
|
|
|
|