You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note, 'N' refers to the number of select bits of a mux (or the number of input bits of a LUT).
'K' refers to the number of LUTs in a particular layer.
layers.py:135
The function LutLayer is a single layer of LUTs. This specifies the connectivity as well as instantiating the Luts.
layers.py:113
The function LutN creates the LUT weights and the Mux.
layers.py:66
The function MuxSTriangle does the actual Mux computation. 'I' is mux input, 'S' is mux select. For a LUT, the 'I' is the weights, and the 'S' is the LUT input.
For custom code, we need to speedup either the full LutLayer (which instantiates a LutN which instantiates a MuxSTriangle) or just the MuxSTriangle.
The text was updated successfully, but these errors were encountered:
Note, 'N' refers to the number of select bits of a mux (or the number of input bits of a LUT).
'K' refers to the number of LUTs in a particular layer.
layers.py:135
The function LutLayer is a single layer of LUTs. This specifies the connectivity as well as instantiating the Luts.
layers.py:113
The function LutN creates the LUT weights and the Mux.
layers.py:66
The function MuxSTriangle does the actual Mux computation. 'I' is mux input, 'S' is mux select. For a LUT, the 'I' is the weights, and the 'S' is the LUT input.
For custom code, we need to speedup either the full LutLayer (which instantiates a LutN which instantiates a MuxSTriangle) or just the MuxSTriangle.
The text was updated successfully, but these errors were encountered: