Folder structure and naming methods
1 unresolved thread
1 unresolved thread
Files
2- Ponsuganth Ilangovan Ponkumar Ilango authored
Missed to adapt changes for general case
+ 34
− 10
@@ -71,13 +71,16 @@ def unfold_toml_dict(toml_dict):
@@ -71,13 +71,16 @@ def unfold_toml_dict(toml_dict):
@@ -313,7 +316,9 @@ def generate_operator(
@@ -313,7 +316,9 @@ def generate_operator(
@@ -350,12 +355,24 @@ def generate_operator(
@@ -350,12 +355,24 @@ def generate_operator(
@@ -415,7 +432,10 @@ def generate_operator(
@@ -415,7 +432,10 @@ def generate_operator(
dir_path = os.path.join(args.output, spec["folder-name"] if "folder-name" in spec.keys() else form_str)
@@ -437,7 +457,11 @@ def generate_operator(
@@ -437,7 +457,11 @@ def generate_operator(
operator_name = spec["operator-name"] if "operator-name" in spec else form_str.title().replace("_", "")
@@ -455,10 +479,10 @@ def elementwise_operator_name(form_str: str, spec: Dict[str, Any]) -> str:
@@ -455,10 +479,10 @@ def elementwise_operator_name(form_str: str, spec: Dict[str, Any]) -> str:
# I do not like this, but should do the trick until we have actual vector function spaces in the HOG.