Multi-Threaded Filtering

Post Reply
spacy51
Senior Member
Posts: 371
Joined: Tue Mar 18, 2008 4:59 pm

Multi-Threaded Filtering

Post 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.

Last edited by spacy51 on Sun Mar 23, 2008 4:45 pm, edited 1 time in total.
mudlord
Senior Member
Posts: 306
Joined: Sun Feb 08, 2009 7:16 am

Multi-Threaded Filtering

Post 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" />

spacy51
Senior Member
Posts: 371
Joined: Tue Mar 18, 2008 4:59 pm

Multi-Threaded Filtering

Post 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.

mudlord
Senior Member
Posts: 306
Joined: Sun Feb 08, 2009 7:16 am

Multi-Threaded Filtering

Post by mudlord »

Implemented.

 

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

spacy51
Senior Member
Posts: 371
Joined: Tue Mar 18, 2008 4:59 pm

Multi-Threaded Filtering

Post 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

Last edited by spacy51 on Tue Mar 25, 2008 7:29 am, edited 1 time in total.
mudlord
Senior Member
Posts: 306
Joined: Sun Feb 08, 2009 7:16 am

Multi-Threaded Filtering

Post by mudlord »

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

spacy51
Senior Member
Posts: 371
Joined: Tue Mar 18, 2008 4:59 pm

Multi-Threaded Filtering

Post by spacy51 »

Post Reply