Ck tile engine commons (#3166)

* Moving Preshuffle to commons

* Fixing Common Validations

* Addressing Review Comments

* Partial Rebasing

* Partial Rebasing

* Partial Rebasing

* Rebasing Complete
This commit is contained in:
Thrupti Raj Lakshmana Gowda
2025-11-13 00:56:18 -06:00
committed by GitHub
parent 797ddfa41e
commit 9af30f04b6
6 changed files with 434 additions and 753 deletions

View File

@@ -21,7 +21,8 @@ def _import_validation_utils():
# Load the module dynamically
spec = importlib.util.spec_from_file_location(
"validation_utils", os.path.join(parent_dir, "commons", "validation_utils.py")
"validation_utils",
os.path.join(parent_dir, "commons", "gemm_validation_utils.py"),
)
validation_utils = importlib.util.module_from_spec(spec)
spec.loader.exec_module(validation_utils)
@@ -824,7 +825,7 @@ def main():
elif elementwise_function == "add":
function_name = "MultiDAdd"
elif elementwise_function == "passthrough":
function_name = "PassThrough" # TODO Change this
function_name = "PassThrough"
args.elementwise_function = function_name