Fast BigFloat unit for Delphi

前端 未结 2 1096
北荒
北荒 2021-01-14 07:38

I\'m looking for a fast BigFloat unit, which can deal with addition, subtraction, multiplication and division (log would be fine but isn\'t necessary) and which has a precis

2条回答
  •  既然无缘
    2021-01-14 08:10

    To summarize the comments to the OP's question.

    A C library is probably the best solution for a big floating point library.

    GMP claims to be the fastest free library, optimized with assembly and established since 1991.

    Use this Delphi wrapper for the GMP library.

    For even faster speed with reasonable cost/effort a CUDA/GPU solution would do the job. There are work going on, but I could not find a finalized solution.

提交回复
热议问题