Skip to content
Snippets Groups Projects

[Feat](Exports) Minor features for export generation

Merged Axel Farrugia requested to merge feat_export_refactor into dev
Files
10
#include <stdint.h>
#include <stdint.h>
 
#define SAVE_OUTPUTS false // Save the feature maps into files (Not compatible with every export)
 
#define AIDGE_CMP false // Compare export and aidge feature maps (Not compatible with every export)
 
#ifdef SAVE_OUTPUTS
#ifdef SAVE_OUTPUTS
#include <sys/types.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/stat.h>
@@ -30,7 +33,6 @@ void {{ func_name }} (
@@ -30,7 +33,6 @@ void {{ func_name }} (
{{ outputs_dtype[o] }}** {{ outputs_name[o] }}_ptr{% if not loop.last %}, {% endif %}
{{ outputs_dtype[o] }}** {{ outputs_name[o] }}_ptr{% if not loop.last %}, {% endif %}
{%- endfor -%})
{%- endfor -%})
{
{
{%- for action in actions %}
{%- for action in actions %}
{{ action }}
{{ action }}
{%- endfor %}
{%- endfor %}
Loading