Can I force my code to run on all device cores?

Hello!

I have a very complex algorithm in my game. My projects is runing very well on my pc i-7, but on my Android everything is a lot slower…

Is there a way to force the device to run one or more of my methods on all his cores?

Use System.Threading, keeping in mind the Unity API is only accessible in the main thread.

–Eric