Displaying 20 results from an estimated 20 matches for "apelant".
2012 Apr 17
0
[LLVMdev] Dragonegg + IR + llc = Dragonegg directly
Hi Martin,
> thanks for the quick reply. I understand, that the generated code is different
> between the two approaches.
> But I would still expect IEEE rules to be respected in any case. I do not see
> any reason why -fPIC -fomit-frame-pointer
> and the like should have any impact on the results computed by the generated code.
probably in the direct case you are using the x86
2012 Apr 17
5
[LLVMdev] Dragonegg + IR + llc = Dragonegg directly
Hi Duncan,
thanks for the quick reply. I understand, that the generated code is
different between the two approaches.
But I would still expect IEEE rules to be respected in any case. I do
not see any reason why -fPIC -fomit-frame-pointer
and the like should have any impact on the results computed by the
generated code.
Are there any options I can set on the command line of llc to force the
2012 Jun 05
0
[LLVMdev] How to unroll loops in opposite loop nest order
On Jun 5, 2012, at 3:20 AM, Martin Apel <martin.apel at SIMPACK.de> wrote:
> I am trying to implement loop unrolling in a context, where lots of constant propagation has taken place.
> Unrolling an outer loop might make an inner loop have constant bounds, therefore I want to process the loops
> outside in, i.e. from parent loops to nested loops.
> Unfortunately the standard loop
2012 Jun 05
2
[LLVMdev] How to unroll loops in opposite loop nest order
I am trying to implement loop unrolling in a context, where lots of
constant propagation has taken place.
Unrolling an outer loop might make an inner loop have constant bounds,
therefore I want to process the loops
outside in, i.e. from parent loops to nested loops.
Unfortunately the standard loop pass manager performs loop passes inside
out, i.e. from nested loops to parent loops,
thereby missing
2011 Jul 15
0
[LLVMdev] Missing optimization in constant propagation?
On Fri, Jul 15, 2011 at 12:21 AM, Martin Apel <martin.apel at simpack.de> wrote:
> Hi all,
>
> I stumbled across a peculiarity regarding constant propagation that I don't understand. I'm not sure, if I oversee anything or if it's a missing feature.
>
> I have created the following simple test function in C:
>
> int times_zero(int a)
> {
> return (a *
2006 Oct 31
1
Asterisk does not bridge zap channels on outgoing calls
Hello... I have a big problem with asterisk. Every time i make a call
asterisk does not bridge the zap channels. The zap channel from which
i'm calling remains in state:ring and applicaton:dial and the zap
channel with the external line configured remains in state:dialling an
Application:AppDial.
Zap/20-1 agentie s 1 Dialing AppDial (Outgoing Line) 09399 (None)
Zap/9-1 int_omg 09399 5 Ring
2011 Jul 15
2
[LLVMdev] Missing optimization in constant propagation?
Hi all,
I stumbled across a peculiarity regarding constant propagation that I don't understand. I'm not sure, if I oversee anything or if it's a missing feature.
I have created the following simple test function in C:
int times_zero(int a)
{
return (a * 0);
}
Compiling this with GCC using dragonegg generates the following code:
%int = type i32
define i32 @times_zero(i32 %a)
2004 Jan 15
3
B-channels restart problem
...r comment that might be helpful.
thanx in Advance
pleaes reply here or to me mughrabi@hotmail.com
Thanx in Advance
Ali Mughrabi
-- Accepting call from '065639815' to '9009170' on channel 20, span 3
-- Executing AGI("Zap/82-1",
"../album_show/album_show.agi|--apelant=065639815") in new stack
-- Launched AGI Script
/var/lib/asterisk/agi-bin/../album_show/album_show.agi
-- B-channel 14 successfully restarted on span 3
-- B-channel 15 successfully restarted on span 3
== Spawn extension (inbound, 9009170, 2) exited non-zero on 'Zap/82-1'...
2011 Jul 06
0
[LLVMdev] First steps with LLVM and partial evaluation
Martin Apel wrote:
> static LLVMContext context;
That's your bug.
Here's the situation that contexts help with. Suppose you write a
library that uses LLVM under the hood (graphics, let's say), and I write
another one that uses LLVM and does audio processing. Someone then
decides to write a video game that uses both of our libraries. As long
as we each use a separate context,
2002 Jun 18
0
Solaris packaging of rsync - script comes here
Hello everybody,
I have written a shell script that makes the building
of a Solaris package of rsync easier. Because I think it is useful
for other Solaris user, I wold be very happy, if somebody
would include it to the source tree.
There is one little things to do:
- include it in the auto-configuration process, so that the
version number will be set correctly.
So far,
Jens
----- Script
2012 Apr 17
0
[LLVMdev] Dragonegg + IR + llc = Dragonegg directly
Hi Martin,
> I tried using dragonegg to compile some numerical software of ours. I
> tried out two different approaches expecting both would yield the same
> results:
> 1. gfortran-4.6 -fplugin=dragonegg-3.0 -o test.o test.f (I ommitted a
> bunch of additional arguments for brevity)
> 2. gfortran-4.6 -fplugin=dragonegg-3.0 -fplugin-arg-dragonegg-emit-ir -S
> -o test.ll
2012 Apr 17
2
[LLVMdev] Dragonegg + IR + llc = Dragonegg directly
Hi all,
I tried using dragonegg to compile some numerical software of ours. I
tried out two different approaches expecting both would yield the same
results:
1. gfortran-4.6 -fplugin=dragonegg-3.0 -o test.o test.f (I ommitted a
bunch of additional arguments for brevity)
2. gfortran-4.6 -fplugin=dragonegg-3.0 -fplugin-arg-dragonegg-emit-ir -S
-o test.ll test.f
llc -O0 -o test.s test.ll
as
2011 Jul 06
2
[LLVMdev] First steps with LLVM and partial evaluation
Hi all,
I'm rather new to LLVM and intend to dive into partial evaluation with LLVM.
I tried to run the example from http://llvm.org/devmtg/2008-08-23/llvm_partial.pdf, which worked after some adaptations, which were necessary, because
LLVM evolved since
the slides were made. However, I also tried to get the same example running as an optimization pass following the instructions in
2012 Jul 20
1
[LLVMdev] How to view CFG of loop (not complete function)
Hi all,
I need to look at the CFG of a loop during debugging. However the
containing function is very large, so it is rather difficult to use the
CFG of the complete function. I tried using the ViewGraph method, but
the compiler kept complaining about undefined symbols related to
GraphTraits or
DOTGraphTraits. Is there any example that I could look at to find out,
what exactly I need to call
2004 May 26
0
Constantin Timoc
Dragi compatrioti,
Numele meu este Constantin Timoc.
Candidez la postul de presedinte al Romaniei pentru a asigura tuturor cetatenilor locuri de munca cat mai bine platite, pentru a distruge coruptia care paralizeaza intreaga societate si pentru a accelera aderarea tarii noastre la Uniunea Europeana.
Fac apel catre toti cetatenii sa aleaga presedinte al Romaniei un candidat care e cinstit,
2006 Mar 14
3
rails on emacs - need a working .emacs sample
I would like to hear from some one who has ecb, multiple modes with
ruby mode + html mode, rails mode all working together and playing
well.
I had ecb working with Ruby syntax highlighting. That was a no-brainer
since I just had to apt-get them on my Debian Sarge box.
It got a bit more comlex after I got most of the .el files in the articles
http://www.emacswiki.org/cgi-bin/emacs/RubyOnRails
2000 Nov 02
2
RSPerl...
Duncan -
(but sent to R-devel, for any other thoughts?)
How do you envision RSPerl being used? Without having seen the
details, I can think of playing with strings; is there a preferred
incantation for stringification of R objects (serialization)?
(actually, the main problem I'm having is that I know how I want to code
something like:
Robject <-
2000 Jul 06
0
R-1.1.0 on Alpha?
Has anyone succeeded in compiling R-1.1.0 on a Digital (Compaq) Alpha
running OSF4.0F (or E)? Everything seems to compile OK (except the
frequent "Warning: Unresolved:" at link time - this threw me off the
scent for a while!), but then at run time I get:
Fatal error: The X11 shared library could not be loaded.
The error was dlopen: cannot load
2005 Aug 07
5
ocfs2 can not mount for nodes. first time installation
Error: mount.ocfs2: Transport endpoint is not connected while
mounting /dev/sdc1 on /u02, could not mount /dev/sdc1.
The installation step is:
1. install all rpms on int-rac1, int-rac2
2. interconnect int-rac1, int-rac2, ping each other using private ip and public
ip ok. Add EMC SAN as shared disk and visable for two nodes.
3. configure int-rac1 using ocfs2console, add two nodes
4. according
2012 Apr 17
1
[LLVMdev] Dragonegg + IR + llc = Dragonegg directly
Hi Anton,
yes the first command line contained -O0 as well. I also tried omitting
-O0 from the llc command line, but this made no difference.
Martin
On 17/04/12 17:14, Anton Korobeynikov wrote:
> Martin,
>
>> Are there any options I can set on the command line of llc to force the
>> identical behaviour with respect to numerical stability?
>> I tried the some of the llc