Skip to content
Snippets Groups Projects
Commit 248ae1c6 authored by ylliao's avatar ylliao
Browse files

functions.py: lookup table: (dict) -> (OrderedDict)

parent 27e14631
No related branches found
No related tags found
No related merge requests found
...@@ -393,7 +393,7 @@ def build_latency_lookup_table(network_def_full, lookup_table_path, min_conv_fea ...@@ -393,7 +393,7 @@ def build_latency_lookup_table(network_def_full, lookup_table_path, min_conv_fea
resource_type = 'LATENCY' resource_type = 'LATENCY'
# Generate the lookup table. # Generate the lookup table.
lookup_table = {} lookup_table = OrderedDict()
for layer_name, layer_properties in network_def_full.items(): for layer_name, layer_properties in network_def_full.items():
if verbose: if verbose:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment