Hi , how i can assign instruction of program to a thread? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110124/8c87ab35/attachment.html>
Hi neda 8664,> how i can assign instruction of program to a thread?LLVM doesn't have special support for threads, you need to call library functions the same as you would from C. I suggest you write some C code that does what you want, then run it through http://llvm.org/demo/ to see the corresponding LLVM IR. Ciao, Duncan.
I want automatically parallelize sequential program in thread level to run on multi-core processors with software pipelining and use llvm. is it a suitable tools in this project ? can you help me in this topic? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110128/b84ebf3d/attachment.html>
Apparently Analagous Threads
- [LLVMdev] extract thread form sequential program
- [LLVMdev] extract thread form sequential program
- [LLVMdev] extract thread form sequential program
- [LLVMdev] parallelization of sequential program in thread level to run on multi-core processors
- [LLVMdev] problem with runOnLoop