From 43ab18fb832017b3c199b8038c0e79819b99f351 Mon Sep 17 00:00:00 2001 From: Tom Verbeure Date: Tue, 19 Jun 2018 02:02:43 -0700 Subject: [PATCH] Unrool -> Unroll --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8799a54..3d3e779 100644 --- a/README.md +++ b/README.md @@ -925,8 +925,8 @@ This plugin is able to unroll the iterative calculation process to reduce the nu | mulUnrollFactor | Int | Number of combinatorial stages used to speed up the multiplication, should be > 0 | | divUnrollFactor | Int | Number of combinatorial stages used to speed up the division, should be > 0 | -The number of cycles used to execute a multiplication is '32/mulUnroolFactor' -The number of cycles used to execute a division is '32/divUnroolFactor + 1' +The number of cycles used to execute a multiplication is '32/mulUnrollFactor' +The number of cycles used to execute a division is '32/divUnrollFactor + 1' Both mul/div are processed into the memory stage (late result).