-
Content Count
575 -
Joined
-
Last visited
-
Days Won
6
Everything posted by Vandrovnik
-
Strange Benchmark Results; Am I Missing Something?
Vandrovnik replied to Joseph MItzen's topic in I made this
I know (I have used it in my thread example), but is it possible to do also with tParallel.For? -
Strange Benchmark Results; Am I Missing Something?
Vandrovnik replied to Joseph MItzen's topic in I made this
I have tried this (will probably not work fine for MaxValue not divisible by Workers), it is 3.6 times faster than single thread on an old i7 CPU. I guess it should be possible to use IFuture<Int64>, but I do not know how to pass parameters to it... It is easy to use tParallel.For, but there I used tInterlocked.Add(total, num), which resulted in much worse time than single thread. const MaxValue=1000000000; type tCalcThread=class(tThread) public CalcFrom: integer; CalcTo: integer; Value: Int64; procedure Execute; override; end; procedure tCalcThread.Execute; var PartialTotal: Int64; num: integer; begin PartialTotal:=0; for num:=CalcFrom to CalcTo do if (num mod 3 = 0) or (num mod 5 = 0) Then inc(PartialTotal, num); Value:=PartialTotal; end; function PLoop32: Int64; const Workers = 8; Var total : Int64; Calcs: array[0..Workers-1] of tCalcThread; a: integer; begin total := 0; fillchar(Calcs, sizeof(Calcs), 0); try for a:=0 to Workers-1 do begin Calcs[a]:=tCalcThread.Create(true); Calcs[a].FreeOnTerminate:=false; Calcs[a].CalcFrom:=Int64(MaxValue)*a div Workers; Calcs[a].CalcTo:=Int64(MaxValue)*(a+1) div Workers-1; Calcs[a].Start; end; for a:=0 to Workers-1 do begin Calcs[a].WaitFor; inc(total, Calcs[a].Value); end; finally for a:=0 to Workers-1 do FreeAndNil(Calcs[a]); end; result := total; end; -
Strange Benchmark Results; Am I Missing Something?
Vandrovnik replied to Joseph MItzen's topic in I made this
I think the result will not be the same - original code adds number 15 just once to the total, while your code will add it twice... -
Is there Parnassus Parallel Debugger for Delphi 11.0?
Vandrovnik posted a topic in Delphi IDE and APIs
Is there Parnassus Parallel Debugger for Delphi 11.0? Debugging threads is a night mare for me, so I wanted to try this IDE enhancement, but did not found it in GetIt... -
Is there Parnassus Parallel Debugger for Delphi 11.0?
Vandrovnik replied to Vandrovnik's topic in Delphi IDE and APIs
Let's hope it wasn't "soon" from a geological perspective... -
There is https://blogs.embarcadero.com/must-have-this-free-powerful-report-generator-for-your-windows-apps/ , I have not tried it.
-
I suppose it will be more difficult to find information on docwiki.embarcadero.com using Google, because Google Bot probably most of the time also sees just errors...
-
ANN: Better Translation Manager released
Vandrovnik replied to Anders Melander's topic in Delphi Third-Party
Thank you! I will try it as soon as possible. -
ANN: Better Translation Manager released
Vandrovnik replied to Anders Melander's topic in Delphi Third-Party
This is very interesting, please are there instructions how to prepare the application to use this tracking? -
... and these are silently ignored, I guess 😞 [RSP-37138] Product documentation has been unavailable for several days - Embarcadero Technologies Internal status: Validation. How much time does it need just to validate this problem?
-
It says it cannot connect to MySQL database server, so the problem would probably happen with newer MediaWiki, too.
-
Hello, Inno Setup is able to take a file which is out of the setup.exe and install it, so if they can distribute more then just one file, they can put logo.jpg etc. in the same directory (or a subdirectory, as in my example) and install would find it there. [Files] Source: "{src}\Licence\*.*"; DestDir: "{app}\Bin"; Flags: external comparetimestamp; Components: Licence
-
Using translations in unit Consts with Delphi 10.4 VCL
Vandrovnik replied to Dirk Janssens's topic in VCL
I have copied Vcl.Consts.pas and System.SysConst.pas to my project folder. I have added them to my project and in them, made translations. With each new version of Delphi, I use WinMerge to find differences and solve them, otherwise it does not compile anymore. -
Is anyone using IBX (Interbase Express) and compatibility question
Vandrovnik replied to Jasonjac2's topic in Databases
Hi, I am using IBX on Windows (32 and 64bit) and Android (32 and 64bit). Database = Firebird (2.5 and 3.0). In Delphi 11, I have not found any problem.- 15 replies
-
- ibx
- interbase express
-
(and 2 more)
Tagged with:
-
I would first test the memory of the computer - for example, https://www.system-rescue.org/ It has a memtest included. When memory is OK, then test disk...
-
Using uninitialized object works on Win32, throws AV on Win64
Vandrovnik replied to aehimself's topic in General Help
Ups, yes, it has a bug 🙂 I was reading it as _Value1 := _Value1+1; -
Using uninitialized object works on Win32, throws AV on Win64
Vandrovnik replied to aehimself's topic in General Help
OK, when we change it to this, so there is an unitialized variable: procedure bla(var _Value1: integer; _Value2: integer); begin if _Value2 > 0 then _Value1 := _Value2+1; end; procedure blub; var Value1: integer; begin bla(Value1, 3); writeln(Value1); end; What will be the value of Value1? I would prefer to get a warning in this case. -
Using uninitialized object works on Win32, throws AV on Win64
Vandrovnik replied to aehimself's topic in General Help
From my point of view, it is wrong. For "var" parameters, I expect they are already initialized. For uninitialized variables, that are used as output, there is "out". https://docwiki.embarcadero.com/RADStudio/Sydney/en/Parameters_(Delphi) - Out parameters are frequently used with distributed-object models like COM. In addition, you should use out parameters when you pass an uninitialized variable to a function or procedure. -
Using uninitialized object works on Win32, throws AV on Win64
Vandrovnik replied to aehimself's topic in General Help
It does not have to look inside - it sees (immediatelly), that uninitialized variable is passed as "var" parameter. It means that I should initialize the variable, or change the procedure and use "out" parameter instead of "var". -
Using uninitialized object works on Win32, throws AV on Win64
Vandrovnik replied to aehimself's topic in General Help
It helps to avoid mistakes. Here it produces a warning: ([dcc32 Warning] Test79.dpr(22): W1036 Variable 'a' might not have been initialized) procedure Test2; var a: integer; begin if a=1 then exit; end; I believe it should be consistent and produce a warning in Kryvich's example, too. -
Using uninitialized object works on Win32, throws AV on Win64
Vandrovnik replied to aehimself's topic in General Help
Why? -
Using uninitialized object works on Win32, throws AV on Win64
Vandrovnik replied to aehimself's topic in General Help
Please will you report it and post here the link? I would vote for it. -
Is Graphics32 ready for Delphi 11 yet?
Vandrovnik replied to RCrandall's topic in Delphi Third-Party
Do you get the same error when you specify full path to the .bmp file? -
Is there any "standard protocol" for recovery from a failure in non atomic operations?
Vandrovnik replied to roPopa's topic in Algorithms, Data Structures and Class Design
In my opinion, in these situation you sometimes have to ask the user. Even when data is sent to printer, it does not mean it was really printed OK (out of paper, damaged printout...). -
Hello, When I set per column font properties (bold, font color...) and run it on a monitor with scale > 100 %, this column is drawn too small. I have reported it, if you want to test and vote, please here: https://quality.embarcadero.com/browse/RSP-36849 If there is a workaround, please let me know...