Jump to content

Erik@Grijjy

Members
  • Content Count

    36
  • Joined

  • Last visited

  • Days Won

    10

Posts posted by Erik@Grijjy


  1. 51 minutes ago, dummzeuch said:

    Unfortunately this will only work with Delphi 10.4 and higher, because it uses Custom Managed Records. 

    As Anders mentioned above, there are other solutions out there that work with older Delphi versions.

    My focus was on keeping it extremely light weight so it doesn't have more overhead than regular events in common cases. And Custom Managed Records are one of the things that make that possible. But you could remove the CMR functionality, but then the users are responsible for cleaning up the multicast events. But that may be only a small price to pay.


  2. 9 hours ago, Rollo62 said:

    Very interesting article, I love C++ Delphi :classic_biggrin:

    Especially the use case samples are great, where I think this could make it possible to be used in a nested way, what I consider for some time.

    Something like that:

    Thanks!
    Yes, the nested case is definitely possible. Your THtmlStringBuilder class would probably have to maintain some sort of state stack so you can match your Enter and Leave calls. This will also ensure you output proper (X)HTML.

     

    BTW: This pattern isn't a trick and doesn't depend on any compiler quirks. It is just a feature of generics in Delphi (and possibly other OOP languages). I remember using this pattern first with Delphi at least 5 years ago, and I don't see any reason why future compilers would change this behavior. It may not be supported by the very first (few) versions of Delphi that introduced generics, but I have no way to test that.


  3. 1 minute ago, Anders Melander said:

    Some benchmarks comparing the performance of the DD and QD types to the native Single and Double types would be appreciated, if you have them.

    I've searched for performance numbers on the QD C++ library but couldn't find any relevant ones. The pdf contains some numbers but they are very old (Pentium II) and quite meaningless since the only comparison made is to the MPFUN Fortran library.

     

    Also the QD page you link to state that the C++ library isn't thread safe. Is the same true for your implementation?

    I have attached a spreadsheet I created a couple of years ago, comparing DD and QD to Single and Double, as well as to some well-known arbitrary precision libraries.

    Results may be a bit different now if I would run these tests again, but I think will still be in the same ballpark.

     

    In short, DD is 2-10 times slower than Double, but 5-100 times faster than other arbitrary precision libraries using the same precision.

    Likewise, QD is 4-100 times slower than Double, but 5-250 times faster than other libraries.

     

    You can also do some simple benchmarking by running the included Mandelbrot sample at different levels of precision (for a magnification level that works at Double precision).

     

    Since this library directly uses the QD C++ library, it has the same limitations (such as thread safety). Although I would assume that most operations would be thread safe since as long as you don't mutate the same DD/QD value from multiple threads. But I haven't checked the C++ source code for this, so I am not sure.

    MultiPrecisionSpeed.xlsx

    • Like 3
    • Thanks 2

  4. 8 minutes ago, Kryvich said:

    Converting one of my program from SimpleXML to Neslib.Xml was not difficult, but I ran into an exception EIntOverflow in the procedure TXmlPointerMap.Map.

    Glad you like it, and thanks for pointing out this issue. It only happens when you compile with Overflow Checking turned on. The hash functions I use should be compiled with overflow checking turned off, so I just added an {$OVERFLOWCHECKS OFF} directive to the Neslib.Xml.Types unit. Could you pull the latest version and try again?

    • Like 1

  5. 43 minutes ago, Kas Ob. said:

    Great article and neat library, thank you !

    Now, i wonder if a memory manager is next on your workshop desk ?
    I genuinely think it is a matter of when, not if.

    Happy to hear! Don't know about creating a memory manager though. Very advanced stuff. And there are already some pretty good 3rd party memory managers out there.

    Although it would be nice to have a high performance memory manager for mobile platforms as well. Maybe something like Microsoft's Mimalloc.


  6. I guess it is also a matter of taste.

    It took a while for me to get used to the "aesthetic" of inline variables, but now I love them (especially with type inference) and can't imagine why I had an aversion against them.

     

    I have seen this type of CMR in C++ code so much, that I got used to it and started to miss it in Delphi (until now). Now, I actually think it improves readability and safety, although I can imagine people feel the opposite. (For some reason, I tend to write "Mutex.Free" in finally parts instead of "Mutex.Release" to leave a lock, because of the muscle memory of freeing stuff inside of finally blocks. With CMRs, this kind of mistake is not possible😉).

     

    An yes, coding conventions can help improve readability. The name Create for a constructor has an association with classes for many people. Calling it something else (like Instantiate) could help, as would turning it into a static class function instead of a constructor.

     

    As with many things, there are often many solutions to a problem. A CMR is just an additional tool in your toolbox...

×