forked from lowRISC/ibex
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[rtl] Add Single Cycle Multiplier targeting FPGA
* Integrate option to implement a multiplier using 3 parallel 17 bit multipliers in order to compute MUL instructions in 1 cycle MULH in 2 cycles. * Add parameter SingleCycleMultiply to select single cycle multiplication. The single cycle multiplication capability is intended for FPGA targets. Using three parallel multiplication units improves performance of multiplication operations at the cost of DSP primitives. For ASIC targets, the area consumed by the multiplication structure will grow approximately 3-4x. The functionality is selected within the module using the parameter `SingleCycleMultiply`. From the top level it can be chosen by setting the parameter `MultiplierImplementation` to 'single_cc'. Signed-off-by: ganoam <[email protected]>
- Loading branch information
Showing
6 changed files
with
357 additions
and
181 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.