Skip to content
Snippets Groups Projects
Commit 5ee85a69 authored by Cyril Moineau's avatar Cyril Moineau
Browse files

Merge branch 'DocExport' of gitlab.eclipse.org:eclipse/aidge/aidge_core into DocExport

parents 6cb5b8e0 11ecdd22
No related branches found
No related tags found
3 merge requests!279v0.4.0,!253v0.4.0,!247Doc export
Pipeline #59035 passed
...@@ -149,7 +149,6 @@ def scheduler_export(scheduler, export_folder_path: str, export_lib: ExportLib = ...@@ -149,7 +149,6 @@ def scheduler_export(scheduler, export_folder_path: str, export_lib: ExportLib =
outputs_size.append(op.attributes["out_size"][idx]) outputs_size.append(op.attributes["out_size"][idx])
func_name = "model_forward" func_name = "model_forward"
ROOT = Path(__file__).resolve().parents[0] ROOT = Path(__file__).resolve().parents[0]
generate_file( generate_file(
str(dnn_folder / "src" / "forward.cpp"), str(dnn_folder / "src" / "forward.cpp"),
...@@ -184,7 +183,6 @@ def scheduler_export(scheduler, export_folder_path: str, export_lib: ExportLib = ...@@ -184,7 +183,6 @@ def scheduler_export(scheduler, export_folder_path: str, export_lib: ExportLib =
if len(outputs_name) != len(outputs_dtype) or len(outputs_name) != len(outputs_size): if len(outputs_name) != len(outputs_dtype) or len(outputs_name) != len(outputs_size):
raise RuntimeError("FATAL: Output args list does not have the same length this is an internal bug.") raise RuntimeError("FATAL: Output args list does not have the same length this is an internal bug.")
if export_lib is not None: if export_lib is not None:
# Copy all static files in the export # Copy all static files in the export
for source, destination in export_lib.static_files.items(): for source, destination in export_lib.static_files.items():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment