Is it possible to fix one function to run on a particular core using OpenMP ?
For example: I have two functions namely : Foo1 and Foo2
And my computer(Linux OS) has two cores: core0 and core1.
So, How can I run application Foo1 always on core0 and Foo2 always on core1 simultaneously?
I am using C++ for coding.
Please help!!