Displaying 20 results from an estimated 41 matches for "neda".
Did you mean:
ned
2011 Dec 12
1
[LLVMdev] problem with runOnLoop
Thank you for your reply
Yes, I change them, so what should I do for another loops?
On Mon, Dec 12, 2011 at 7:54 PM, neda 8664 <neda8664 at gmail.com> wrote:
> Thank you for your reply
>
> Yes, I change them, so what should I do for another loops?
>
> On Mon, Dec 12, 2011 at 7:42 PM, John Criswell <criswell at illinois.edu>wrote:
>
>> On 12/12/11 9:59 AM, neda 8664 wrote:
>>...
2011 Oct 13
6
[LLVMdev] BasicBlock succ iterator
...bj.o -o out.o
1. Running pass 'Function Pass Manager' on module 'obj.o'.
2. Running pass 'Loop Pass Manager' on function '@main'
Aborted (core dumped)*
I do not know why this error occurred.Who knows why this error occurs and
what should I do?
Best regards
neda
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20111013/01b35da6/attachment.html>
2011 Dec 12
0
[LLVMdev] problem with runOnLoop
On 12/12/11 10:25 AM, neda 8664 wrote:
>
> Thank you for your reply
>
> Yes, I change them, so what should I do for another loops?
I don't really know what you should do since I don't know what your code
does. All I know is that it's changing the function's control-flow graph.
If you're no...
2011 Dec 12
4
[LLVMdev] problem with runOnLoop
hi all,
I want access to all basic blocks of function in a loop, so I used the
following code:
*bool parallel::runOnLoop(Loop *L, LPPassManager &LPM)
{
for (Function::iterator bi= func->begin(); bi != func->end(); bi++){
//
}
}*
First loop run without problem, but for second loop I get the following
error:
*0 libLLVM-2.9.so 0x0137d530
1 libLLVM-2.9.so 0x0137fa6c
2
2011 Dec 12
1
[LLVMdev] problem with runOnLoop
I am changing structure of loops, I used std::vector<> but i get same
error, I can’t use FunctionPass :(
On Mon, Dec 12, 2011 at 8:03 PM, John Criswell <criswell at illinois.edu>wrote:
> On 12/12/11 10:25 AM, neda 8664 wrote:
>
> Thank you for your reply
> Yes, I change them, so what should I do for another loops?
>
>
> I don't really know what you should do since I don't know what your code
> does. All I know is that it's changing the function's control-flow graph.
>...
2011 Oct 14
0
[LLVMdev] BasicBlock succ iterator
...!= pred_end(BB); ++PI)
{
BasicBlock *pred = *PI;
if (!L->contains(pred))
continue;
pred->getTerminator()->eraseFromParent();
}
BB->eraseFromParent();
}
*
May this code be causing the problem?
Best regards
neda
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20111014/9b755118/attachment.html>
2008 May 09
3
Hiring Ruby on Rails Programmer
Hi there,
My company is looking for a full-time, in-house rails programmer to
start immediately. If you are interested please contact me!!!
Thanks!
Neda
jobs-FUiS5veSkuU@public.gmane.org
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To...
2011 Sep 07
2
[LLVMdev] llvm-prof
hi
I changed llvm-prof and make it, but when use profile.pl ,i could not see
any change in result.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110907/fc9be189/attachment.html>
2011 Sep 07
0
[LLVMdev] llvm-prof
Dear Neda,
Please explain in more detail what you are trying to do and what is not
working. I do not understand what llvm-prof does that you don't like or
what you want llvm-prof to do.
-- John T.
On 9/7/11 1:38 AM, neda 8664 wrote:
> hi
> I changed llvm-prof and make it, but when use profil...
2011 Sep 19
2
[LLVMdev] code generation
...nications to threads. and I stop
in this position. Unfortunately I don’t have enough time and I am under
force to complete the project.
Can you help me and do you know tools or references that can help me in
short time.
thank you for your attention and I wish you a good times.
Best regards
neda
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110919/d574d1de/attachment.html>
2011 Dec 01
3
[LLVMdev] Benchmarking for automatic parallelization project
Hi all,
I am looking appropriate Benchmarking for the assessment of automatic
parallelization project. What Benchmarking do you suggest me?
regards
neda
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20111201/95e7779c/attachment.html>
2012 Dec 18
1
[LLVMdev] problem with runOnLoop
John Criswell <criswell <at> illinois.edu> writes:
>
>
> On 12/12/11 9:59 AM, neda 8664 wrote:
>
>
> hi all,
> I want access to all basic blocks of function in a loop, so I used
> the following code:bool parallel::runOnLoop(Loop *L, LPPassManager
> &LPM)
> {
> for (Function::iterator bi= f...
2012 Apr 26
1
Aggregate function for comparison stats
...more general way of creating such a matrix of any comparison
function.
Thank you for your help,
--
Neil Davis
Ph.d.-student
DTU Wind Energy
Technical University of Denmark
Department of Wind Energy
Ris? Campus Frederiksborgvej 399, P.O. Box 49
Building 125
4000 Roskilde
Direct +45 46775067
neda at dtu.dk <mailto:neda at dtu.dk>
www.dtu.dk <http://www.dtu.dk>
2011 Dec 12
0
[LLVMdev] problem with runOnLoop
On 12/12/11 9:59 AM, neda 8664 wrote:
> hi all,
>
> I want access to all basic blocks of function in a loop, so I used the
> following code:
>
> /bool parallel::runOnLoop(Loop *L, LPPassManager &LPM)
> {
> for (Function::iterator bi= func->begin(); bi != func->end(); bi++){
>...
2011 Aug 07
4
[LLVMdev] profile.pl
i could not use profile.pl, however i did reinstall the llvm but didn't
solve my problem. is there is another way to extract profilling information
in llvm?
i have another question, i want know how can estimate execution time for
each operand such as mul ,add, ... ?
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2011 Jan 24
2
[LLVMdev] extract thread form sequential program
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>
2011 Jan 24
0
[LLVMdev] extract thread form sequential program
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 corres...
2011 Jan 28
2
[LLVMdev] extract thread form sequential program
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>
2011 Jan 28
0
[LLVMdev] extract thread form sequential program
LLVM has no facility for dealing with threads explicitly. If you're
implementing a research tool to automatically pipeline software, LLVM
could be of use because it is also a JIT with a good API.
On Fri, Jan 28, 2011 at 8:35 AM, neda 8664 <neda8664 at gmail.com> wrote:
> 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?
>
> ___________...
2011 Feb 10
0
[LLVMdev] create function
I think you might be interested in ExtractCodeRegion() function.
- Jakub
On Mon, Feb 7, 2011 at 2:40 PM, Jakub Staszak <kubastaszak at gmail.com> wrote:
> I think you might be interested in ExtractCodeRegion() function.
>
> - Jakub
>
> On Sat, Feb 5, 2011 at 7:40 AM, neda 8664 <neda8664 at gmail.com> wrote:
>> i need split a sequential program to multithread. the first step I am going
>> to assign each basic block of program to a thread, so i want create a
>> function for each basic block and add instruction of basic block into it and
>>...