Use cases for LibQ #6
Replies: 2 comments 3 replies
-
Dear Piotr Semenov, Thank you for your library. I am interested in this library because I encountered one problem. I wrote trading robot using TinkoffSDK. This API used fixed type with 64 bit in integer part and 32 bit in fractional part. I didn't find any fixed point library for C++ which works with integral type more than 64 bit. I started to write own fixed point library which use any integer value (include types are provided different bignum arithmetic libraries) as storage type. But this process isn't fast: I get different problems with algorithms for precise calculations result of trigonometry functions, sqrt, gamma and other. Your library was interesting for me because you use CORDIC. Opinion on your ideas:
|
Beta Was this translation helpful? Give feedback.
-
I’ve saved it for the time if I ever find myself talking about computational geometry. No particular use case in mind, I guess |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Dear stargazers,
@kasandko, @dvolosnykh, @GerHobbelt, @Eoin-ONeill-Yokai, @timostrating, @milliyang, @JensGrabner, @nicoulaj, @d-led, and @brotherofken.
I really appreciate that you found this repository interesting and maybe even useful some time or years ago. I hope you felt it positive :)
If you had applications for this library, can you please kindly share your use cases with me? I will appreciate any feedback you'll give.
I discovered that easy-to-go fixed-point arithmetics is still demanded in 2024.
So I decided to resume this project and upgrade it up to C++20 within modern compilers like LLVM/CLang/GCC13/etc and make it to work properly with different runtimes.
I have ideas how to evolve this repository. Some of them are here:
My guess is that reducing of memory footprint, making computations energy efficient, and suitable for deployment on resource-constrained devices like edge/IoT will be very hot in next decade. So I believe this repository still have potential!
Beta Was this translation helpful? Give feedback.
All reactions