CGBN
CGBN copied to clipboard
Log and log1p support
Hi,
Reading through the code, searching w/ github, I couldn't locate an implementation of log or log1p. Did I miss something? Is support for those foreseen some day? Is there a trick I'm missing here?
Thanks in advance for your help.
If you are looking for integer log you can approximate it with clz
truncate(log2(n)) = BITS - clz(N) - 1