3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-03-01 19:26:55 +00:00

symfpu: Add altsqrt

No denormalization here.  That can be a problem for later (or not at all).
This commit is contained in:
Krystine Sherwin 2026-02-21 17:08:35 +13:00
parent 48cb1d10b1
commit c2731b43a4
No known key found for this signature in database
2 changed files with 5 additions and 2 deletions

View file

@ -447,7 +447,8 @@ struct SymFpuPass : public Pass {
}
if (args[argidx] == "-op" && argidx+1 < args.size()) {
op = args[++argidx];
if (op.compare("sqrt") == 0)
if (op.compare("sqrt") == 0
|| op.compare("altsqrt") == 0) // currently undocumented
inputs = 1;
else if (op.compare("add") == 0
|| op.compare("sub") == 0
@ -534,6 +535,8 @@ struct SymFpuPass : public Pass {
return symfpu::falseDivide_flagged(format, rounding_mode, a, b, prop(true));
else if (op.compare("alt2div") == 0)
return symfpu::falseDivide_flagged(format, rounding_mode, a, b, prop(false));
else if (op.compare("altsqrt") == 0)
return symfpu::falseSqrt_flagged(format, rounding_mode, a);
else
log_abort();
};