-
Content Count
209 -
Joined
-
Last visited
-
Days Won
1
RDP1974 last won the day on September 29 2021
RDP1974 had the most liked content!
Community Reputation
39 ExcellentRecent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
RDP1974 changed their profile photo
-
e.c. these dll are only for 64bit latest mysql (copy them from or use the bin folder of the mysql in FDPhysMySQLDriverLink)
-
from ver 8 the dll are inside the c:\program files\mysql\bin folder of the server latest version needs also a pair of dll crypto ssleay or something for the new ssl protocol auth
-
updated Delphi64RTL intel ipp onetbb
RDP1974 replied to RDP1974's topic in RTL and Delphi Object Pascal
thanks for the hint I correct -
updated Delphi64RTL intel ipp onetbb
RDP1974 replied to RDP1974's topic in RTL and Delphi Object Pascal
look, I did only pascal wrappers, here's how to obtain the dll's: install visual studio c++ (I use the 2019 version) install intel ipp https://www.intel.com/content/www/us/en/developer/tools/oneapi/ipp.html install python the allocator is here: https://www.oneapi.io/ https://github.com/oneapi-src/oneTBB/tree/master see cmake dir, run it and build a visual studio project, locate tbbmalloc and compile it (you should select MD multithreading static library) the simd rtl replacement: install qt5 python library, if I remember "pip install pyqt5" python C:\Program Files (x86)\Intel\oneAPI\ipp\latest\opt\ipp\tools\custom_library_tool_python\main.py this tool will build a vc script to create the custom dll locate ippsZero_8u, ippsCopy_8u, ippsMove_8u, ippsSet_8u, ippsFind_8u, ippsCompare_8u, ippsUppercaseLatin_8u_I, ippsReplaceC_8u from signal processing, and other select (indeed we can extend many functions from this tool, especially for image processing, but I didn't have time to do) run the script to obtain the dll the zlib accelerated with ipp: C:\Program Files (x86)\Intel\oneAPI\ipp\2021.12\share\doc\ipp\components_and_examples_win\components\interfaces here you can see common libraries enhanced, check the folder zlib and open the readme, follow the instructions tell me if you have troubles in build this kind regards -
updated Delphi64RTL intel ipp onetbb
RDP1974 replied to RDP1974's topic in RTL and Delphi Object Pascal
maybe in rdpsimd64 can we rem this line? which cpu do you test? procedure Move2(const Source; var Dest; Count: NativeInt); inline; begin //if Count > 0 then //>>> useless checking? SeaMove(@Source, @Dest, Count); end; I removed the check, works ok, thanks for the hint -
do you know if somebody has done a webbroker bridge to ms http2 api (http.sys)? else should be nice build it and add a session mechanism using tdictionary hints?
-
updated Delphi64RTL intel ipp onetbb
RDP1974 replied to RDP1974's topic in RTL and Delphi Object Pascal
ok, I will publish a tutorial how to build the dll's -
updated Delphi64RTL intel ipp onetbb
RDP1974 replied to RDP1974's topic in RTL and Delphi Object Pascal
the allocator is open source here: https://github.com/oneapi-src/oneTBB/tree/master the simd rtl and the zlib are done using ipp suite: https://www.intel.com/content/www/us/en/developer/tools/oneapi/ipp.html dll are built on a clean windows 2022 setup -
hi, I have updated the libraries and units of the RTL patches from Intel IPP oneTBB performance suite these are well suited for web server application scalability on windows architecture https://github.com/RDP1974 (test on concurrent http calls show 13x speedup) there are enhancements on zlib 1.3.1 options, and some random av seems solved correctly I have done testing, but please if you found troubles please notify me at roberto.dellapasqua dot live.com kind regards Roberto
-
hi, can be possible to use thttpclient in async mode and do 4 get concurrently (as chromium does)? are they overlapped? how to discover the sender? or we need to run 1 get at once in sequence?
-
hi, I want do this with fmx: 1- vertscrollbox 2- tlayout 3- create at runtime trectangle then fill it with a bitmap, dinamically, when needed (as add tiles) I did a small test without success how to do? btw. I like to add event callbacks too, as onclick() btw. the best method to draw things, call update, etc.
-
hi, I need to develop webrtc ios android app can someone suggest me which is better among Alcinoe https://github.com/MagicFoundation/Alcinoe or http://www.flashavconverter.com/content/webrtc-delphi-component (this last doesn't patch units and this is preferable to me) about reliability and quality? thanks for any hints
-
mysql oracle from ver.8 is 64bit only c connectors dll are inside \lib and \bin folders (without 32bit version) the solution of Lajos seems a good workaround (32bit odbc in designtime and 64bit native for runtime) very thanks
-
hi in D12 64bit can be possible to use in designtime firedac components? actually I use libs ver 6.1.111 32bit and 64bit to connect to mysql ver 8.0.23 8.0.23> drivers to use are mandatory 64bit so designtime is not possible (requiring 32bit libs)
-
Hi, I want ask, using OmniXml, can be possible to: 1) load, populate a XML doc from a XSD schema? 2) then set the values?