Skip to content
Snippets Groups Projects
Commit 715da32c authored by Lucian Petrica's avatar Lucian Petrica
Browse files

relaxed check for external weights - mem_mode can be unset

parent 28f9e437
No related branches found
No related tags found
No related merge requests found
......@@ -59,6 +59,7 @@ class InsertIODMA(Transformation):
fc_extw_nodes = list(
filter(
lambda x: x.op_type == "StreamingFCLayer_Batch"
and get_by_name(x.attribute, "mem_mode") is not None
and get_by_name(x.attribute, "mem_mode").s.decode("UTF-8") == "external"
and model.find_producer(x.input[1]) is None,
all_nodes,
......
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