[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.programming.threads

Parallel Sort library was ported to Delphi XE versions

Ramine

10/30/2014 6:37:00 PM

Hello,


I have ported my Parallel Sort library to the delphi XE versions on
the Win32 and Win64 platforms...


Since i have only a computer with a Quadcore, i have tried to do
a scalability prediction using the Amdahl equation of my Parallel Sort
library and the numbers are good, and since i have completly
parallelized the sorting part and the merging part, my Parallel Sort
library is more scalable than my Parallel Quicksort library since on the
parallel quicksort you can not completly parallelize the partition()
procedure and you will still have a serial part in the partition()
procedure that is big.. that makes my Parallel Sort library more
scalable on multicores, but you have to know that on Quadcore the
difference is not by much, but as soon as you use more cores than 4
cores my parallel sort library will be more scalable than my Parallel
Quicksort. So all in all i have brought to you a good an interresting
parallel library to add to your libraries.


You can download my Parallel Sort library from:

https://sites.google.com/site/aminer68/parallel-so...


For the Delphi XE versions you have to download the zipfile
called "parallelsort_xe.zip"

and for the FreePascal and for Delphi 7 to Delphi2007 you have
to download the zipfile called "parallelsort.zip"



Thank you,
Amine Moulay Ramdane.



3 Answers

Paul Smith

9/21/2007 5:43:00 PM

0

"SL3" <SL3@discussions.microsoft.com> wrote in message
news:17B28F48-AC6B-479B-9063-0B905BA692B9@microsoft.com...
>I mean games on CD's...games that require the CD be in the disc player...

What games?

--
Paul Smith,
Yeovil, UK.
Microsoft MVP Windows Shell/User.
http://www.dasmirnov...
http://www.windowsres...

*Remove nospam. to reply by e-mail*


André Grønmo

10/4/2007 8:08:00 PM

0

You can try installing it on the kids "standard" account, maybe that way it
will only require the administrator password once.
Instead of installing it on the administrator account with the "install for
all user" option.


"SL3" <SL3@discussions.microsoft.com> wrote in message
news:17B28F48-AC6B-479B-9063-0B905BA692B9@microsoft.com...
>I mean games on CD's...games that require the CD be in the disc player...
>
> "Paul Smith" wrote:
>
>> "SL3" <SL3@discussions.microsoft.com> wrote in message
>> news:14185BBA-25E0-4B98-ABC4-17BD85EA7B71@microsoft.com...
>> >I have my kids accounts set up as standard users..when they try to play
>> >games
>> > on discs
>>
>> Hello. Let's start of by finding out exactly what you mean by "on
>> discs"?
>> Are the games not installed?
>>
>> > it asks for my password..
>>
>> That would be because the game is trying to access the whole machine for
>> some reason, as an administrator, instead of just running as a standard
>> user.
>>
>> > Is there a way around that..it is quite
>> > annoying to have to run downstairs to approve games I have allowed.
>>
>> Possibly, there may be an updated version of the game which behaves
>> better.
>>
>> --
>> Paul Smith,
>> Yeovil, UK.
>> Microsoft MVP Windows Shell/User.
>> http://www.dasmirnov...
>> http://www.windowsres...
>>
>> *Remove nospam. to reply by e-mail*
>>
>>

Ramine

10/30/2014 6:52:00 PM

0


Hello,


The Quicksort implementation inside my Parallel Sort library uses the
median-of-three, and i have also modified its partition() function so
that it avoids worst case performance, so it's really fast.



Thank you,
Amine Moulay Ramdane.