in reply to SMP and Perl

Perl doesn't "do" this on its own; at least not if you don't use threads, and even then I doubt that Perl itself would do it (anyway, I've been given to understand that Perl's current threading implementation isn't considered production-quality, yet) ...

That does not mean that you cannot make use of your two processors, however. If your problem can be split up into two parts, you can just fork your perl process and let each process run on a different processor (as to how exactly you make different processes use different processors depends on your OS and whether it can do this automatically for you). If the processes need to exchange (limited) amounts of data, you can do this through pipes or shared memory/Inter Process Communication.

If your problem can not be split up, you are at a loss anyway, since SMP is not going to help you one bit then in any case.

BTW, please at least reread your question next time (and cut down on the errors), and use some better formatting :)