-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Floating point square root #171
Labels
Comments
As part of the 2025 OSS Hackathon, ROHD_Team1 is working on this issue. |
Awesome! Assigned! |
lucasphillips
pushed a commit
to lucasphillips/rohd-hcl
that referenced
this issue
Mar 7, 2025
Add a base class for floating point square root. Implement a basic floating point square root module. Mantissa is variable, but limited to odd numbers from 1 to 51. No rounding implemented. Implement a fixed point square root for values with three integral bits and up to 51 fractional bits. Add a fixed point square root method. Add tests for fixed-point and floating-point square root. Implements intel#171 Co-authored-by: James Farwell <james.c.farwell@intel.com> Co-authored-by: Curtis Anderson <curtis.anderson@intel.com> Signed-off-by: Stephen Weeks <stephen.weeks@intel.com> Signed-off-by: James Farwell <james.c.farwell@intel.com> Signed-off-by: Curtis Anderson <curtis.anderson@intel.com>
lucasphillips
pushed a commit
to lucasphillips/rohd-hcl
that referenced
this issue
Mar 7, 2025
Add a base class for floating point square root. Implement a basic floating point square root module. Mantissa is variable, but limited to odd numbers from 1 to 51. No rounding implemented. Implement a fixed point square root for values with three integral bits and up to 51 fractional bits. Add a fixed point square root method. Add tests for fixed-point and floating-point square root. Implements intel#171 Co-authored-by: James Farwell <james.c.farwell@intel.com> Co-authored-by: Curtis Anderson <curtis.anderson@intel.com> Signed-off-by: Stephen Weeks <stephen.weeks@intel.com> Signed-off-by: James Farwell <james.c.farwell@intel.com> Signed-off-by: Curtis Anderson <curtis.anderson@intel.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Motivation
Floating point units sometimes need to be able to perform a square root operation.
Desired solution
A floating-point square root component.
Alternatives considered
No response
Additional details
No response
The text was updated successfully, but these errors were encountered: