Page 1 of 1

Multi-Threaded Filtering

Posted: Sun Mar 23, 2008 3:03 pm
by spacy51

Hi there.

 

It took my just about an hour to make use of my Dual Core CPU by splitting the image into two parts and let both cores filter one half of the image.

 

Unfortunately, there are issues with HQ3x/4x ASM:

http://vba-m.com/forum/showthread.php?tid=32

 

 

My code is generic, so it can split the iamge into 2 threads, 4 threads, 200, whatever.

 

In theory, there are slightly visible borders between the areas splited up, but practically, I couldn't see them.

 

I'll post it as soon as anyone took care of the HQ filters [img]<fileStore.core_Emoticons>/emoticons/tongue.png[/img]/emoticons/tongue@2x.png 2x" width="20" height="20" />

 

 

Here's a small benchmark on my C2D E6300 @ 2.8 GHz:

Pokémon Crystal, World Map:
hq2x, 1 thread: 640-705%

hq2x, 2 threads: 800-917%

hq2x, 4 threads: 800%

 

Advacne Wars 2, Battle Field:

hq2x, 1 thread: 200%

hq2x, 2 threads: 250%

hq2x, 4 threads: 250%

I only have a dual-core CPU, so of course there's no speed improvement with 4 threads.

 

 

 

 

I will attach the diff-file to enable multi-threaded filtering for Direct3D, just in case someone wants to try it out and check for the HQ3x/4x filters working.


Multi-Threaded Filtering

Posted: Sun Mar 23, 2008 6:22 pm
by mudlord

I'll see about making the OpenGL renderer use multithreaded code...

 

Maybe Nach might be able to help us, since he is very knowledgeable in ASM [img]<fileStore.core_Emoticons>/emoticons/smile.png[/img]/emoticons/smile@2x.png 2x" width="20" height="20" />


Multi-Threaded Filtering

Posted: Sun Mar 23, 2008 8:33 pm
by spacy51

Well, it would be better to migrate the pixel filtering code from the rendering APIs to a generic place like systemDrawScreen() in VBA.cpp,

but on the other hand, this would require some work to adjust everything.


Multi-Threaded Filtering

Posted: Tue Mar 25, 2008 12:13 am
by mudlord

Implemented.

 

Thanks to chrono for fixing up the HQ3X/HQ4X assembler code.


Multi-Threaded Filtering

Posted: Tue Mar 25, 2008 7:28 am
by spacy51

The problem is still there [img]<fileStore.core_Emoticons>/emoticons/sad.png[/img]/emoticons/sad@2x.png 2x" width="20" height="20" />

 

Read http://vba-m.com/forum/showthread.php?tid=32&pid=200#pid200


Multi-Threaded Filtering

Posted: Tue Mar 25, 2008 7:34 am
by mudlord

Damn...[img]<fileStore.core_Emoticons>/emoticons/sad.png[/img]/emoticons/sad@2x.png 2x" width="20" height="20" />


Multi-Threaded Filtering

Posted: Fri Mar 28, 2008 6:31 pm
by spacy51