File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 55reuse_factor = (
66 'The number of times each multiplier is used by controlling the amount of pipelining/unrolling. '
77 'Lower number results in more parallelism and lower latency at the expense of the resources used.'
8+ 'Reuse factor = 1 corresponds to all multiplications executed in parallel, and hence, the lowest possible latency.'
89)
910
1011index = 'Internal node counter used for bookkeeping and variable/tensor naming.'
11- trace = 'Enables saving of layer output (tracing). '
12+ trace = 'Enables saving of layer output (tracing) when using hls_model.predict(...) or hls_model.trace(...) '
1213
1314result_type = 'The datatype (precision) of the output tensor.'
1415accum_type = 'The datatype (precision) used to store intermediate results of the computation within the layer.'
3536 'The number of outputs computed in parallel. Essentially the number of multiplications of input window with the '
3637 'convolution kernel occuring in parallel. '
3738 'Higher number results in more parallelism (lower latency and II) at the expense of resources used.'
39+ 'Currently only supported in io_parallel.'
40+ )
41+ conv_implementation = (
42+ '"LineBuffer" implementation is preferred over "Encoded" for most use cases. '
43+ 'This attribute only applies to io_stream.'
3844)
39- conv_implementation = '"LineBuffer" implementation is preferred over "Encoded" for most use cases.'
4045
4146# Recurrent-related attributes
4247
You can’t perform that action at this time.
0 commit comments