Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
jicampos committed Dec 19, 2024
1 parent 6742c01 commit 9454e6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hls4ml/backends/vivado/passes/conv_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class GenerateConvStreamingInstructions(OptimizerPass):

def match(self, node):
is_match = (
isinstance(node, (Conv1D, SeparableConv1D, Conv2D, SeparableConv2D))
isinstance(node, (Conv1D, SeparableConv1D, Conv2D, SeparableConv2D))
and node.model.config.get_config_value('IOType').casefold() == 'io_stream'
and node.get_attr('implementation').casefold() == 'encoded'
)
Expand Down

0 comments on commit 9454e6f

Please sign in to comment.