I need to allocate different tasks to various cores. How can i allocate? What is the syntax?
Also, through xTme Scheduler, is scheduing possible? if so, how can we do that?
how scheduling of various tasks can be done in startkit?
-
- Member++
- Posts: 17
- Joined: Fri Dec 26, 2014 4:41 pm
-
- Member
- Posts: 10
- Joined: Fri Nov 07, 2014 1:30 pm
So I am no expert but try something like this:
on tile[#].core[#]: task(blah blah blah);
# is obviously what tile and core you need your task to run on.
When you build the application you should be able to see how many resources are taken up such as cores and tiles.
When running your target in debug mode you should see a panel in xtime conposer which shows what tasks are running on each core and tile.
I hope this helps. I would take some good screen shots but im replying to this on my mobile.
Cheers!
on tile[#].core[#]: task(blah blah blah);
# is obviously what tile and core you need your task to run on.
When you build the application you should be able to see how many resources are taken up such as cores and tiles.
When running your target in debug mode you should see a panel in xtime conposer which shows what tasks are running on each core and tile.
I hope this helps. I would take some good screen shots but im replying to this on my mobile.
Cheers!
-
- Member++
- Posts: 17
- Joined: Fri Dec 26, 2014 4:41 pm
Thanks for replyBut, how can I allocate multiple(4or5) tasks to every core of the tile? Is it possible? Actually, I need to see whether all the tasks get executed without fail even though they have arrived at the same time.. And, can we schedule them in an order?