MCPcopy Create free account
hub / github.com/MeshInfra/WaferLLM / parse_args

Function parse_args

MeshGEMM/compile.py:15–22  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

13
14
15def parse_args():
16 ap = argparse.ArgumentParser(description="Compile MeshGEMM (WSE-3, SDK 2.10)")
17 ap.add_argument("--mode", choices=["sim", "device"], required=True)
18 ap.add_argument("--P", type=int, required=True)
19 ap.add_argument("--Mt", type=int, required=True)
20 ap.add_argument("--Kt", type=int, required=True)
21 ap.add_argument("--Nt", type=int, required=True)
22 return ap.parse_args()
23
24
25def main():

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected