Skip to content

Commit ab32f04

Browse files
committed
Fix strategy choices
1 parent 3ca5c59 commit ab32f04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hls4ml/backends/libero/libero_backend.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ def _register_layer_attributes(self):
2626
attrs.append(
2727
ChoiceAttribute(
2828
'strategy',
29-
choices=['Latency', 'Resource'],
30-
default='Latency',
29+
choices=['latency', 'resource'],
30+
default='latency',
3131
)
3232
)
3333
self.attribute_map[layer] = attrs

0 commit comments

Comments
 (0)