Skip to content

Commit ae68da2

Browse files
committed
disable delay_constraint in da4ml
1 parent 817cb56 commit ae68da2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hls4ml/backends/vivado/passes/distributed_arithmetic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def transform(self, model: 'ModelGraph', node: Layer):
129129
codegen_backend = VitisCodegenBackend(fn_name=fn_name)
130130

131131
with Namer().tmp_scope():
132-
states = compile_kernel(kernel, k, b, i, [False] * n_in, [0] * n_in, 1, 0, 128, 64) # type: ignore
132+
states = compile_kernel(kernel, k, b, i, [False] * n_in, [0] * n_in, 1, None, 128, 64) # type: ignore
133133
inp, out = graph_compile_states(states, False)
134134
if node.attributes['bias'] is not None:
135135
bias = node.attributes['bias'].data.ravel()

0 commit comments

Comments
 (0)