Open
Description
Description
This RFC proposes to add the implementation of math/base/special/exp10f
Related Issues
Related issues #649.
Questions
No.
Other
No.
Checklist
- I have read and understood the Code of Conduct.Searched for existing issues and pull requests.The issue name begins with
RFC:
.
Metadata
Metadata
Assignees
Labels
No labels
Activity
Deepak91168 commentedon Jun 12, 2025
Hey @sahil20021008!
Hope you're doing well.
I came across this RFC and would love to contribute to it. If you could share more details about the expected functionality or any specific requirements, I’d be happy to give it a try!
Thanks!
sahil20021008 commentedon Jun 13, 2025
Hey @Deepak91168
There arent any specific requirements as far as I can recall.
exp10f
function performs same operations but on float32 numbers instead of float64For specific implementation, you will need to look at the implementation of the same function for some of the other math libraries such as Golang, Ruby, etc
Deepak91168 commentedon Jun 13, 2025
Hi, just confirming it implement the exponential function
e^x
specifically forfloat32
values right?If so, are there any related functions or internal utilities you’d recommend checking out? I'd appreciate any pointers.
On it!
Thanks!
sahil20021008 commentedon Jun 13, 2025
You can go through similar functions like exp10, exp2, etc
You should also go through some float32 functions so that you can get an idea of the basic difference between using single precision and double precision values
Deepak91168 commentedon Jun 14, 2025
Thanks for explaining!
I think I understood it properly, working on it!