Displaying 19 results from an estimated 19 matches for "oges".
Did you mean:
goes
2005 Jun 13
3
problem with pf and asterisk
current setup
SIP phone 192.168.1.30 --> linksys wrt54g sveasoft -- INTERNET --
(xl0) Firewall (xl2:172.16.0.50)--> (em1:172.16.0.101) Asterisk
problem is RTP stream not oging trouhg from * to sip and vice versa.
#1 and asterusk is pushing 192.168.1.30 back to linksys with 172 as
return address....
or
#2 asterisk trying to get back to me as 192.168 on public internet..
got
2007 Aug 10
1
[LLVMdev] llvm.sqrt and undefined behavior
In llvm.sqrt, why is the penalty for negative operands undefined behavior,
as opposed to merely an unspecified result?
As an example, in code like this:
%x = call float @llvm.sqrt.f32(float %y)
%z = fcmp oge float %y, -0.0
Does LLVM intend to reserve the right to assume that %z is always true?
Or that %z is undef? Or even that any statement dominated by %x is
unreachable?
There's the
2004 Apr 11
9
pasting results into Word/Excel
Is there some clever way of pasting results from R into Excel or Word, as
tab limited format so they are easy to turn into a formatted table.
Or is there some other way of doing this to avoid the time spent
reformatting the output for presentation.
If different, I am also interested in an answer to the same question but
using S-Plus.
Many thanks,
Graham
2013 Oct 09
4
[LLVMdev] Related constant folding of floating point values
Hi all,
I have the following test case:
#define FLT_EPSILON 1.19209290E-7
int err = -1;
int main()
{
float a = 8.1;
if (((a - 8.1) >= FLT_EPSILON) || ((a - 8.1) <= -FLT_EPSILON)) { //I am
using FLT_EPSILON to check whether (a != 2.0).
err = 1;
} else {
err = 0;
}
return 0;
}
with -O3 optimization level clang generates already incorrect LLVM IR:
; Function Attrs:
2016 Aug 10
0
Updated Vagrant Box's are now available : 1607
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi,
Updated Vagrant box's are now available for CentOS Linux 7 and CentOS
Linux 6 for x86_64. These are available for the Libvirt and the
VirtualBox providers in Vagrant.
ref: https://atlas.hashicorp.com/centos/boxes/6
https://atlas.hashicorp.com/centos/boxes/7
Release Notes for these images are published at :
2009 Aug 18
3
Wine Battlefield 1942 Sound
Can someone explain Jeff's hack, I really want to play BF1942 with sound fixed,especially with kdog's comment 15. Thanks
http://bugs.winehq.org/show_bug.cgi?id=11499#c15
Thank You, so far both Fedora and Ubuntu forums are mute
2007 Sep 25
0
[LLVMdev] lli vs JIT diffs on FCmp::ne with NaN operands
I am having a little trouble with the fcmp one instruction on doubles only.
For ordered comparisons, the LLVM manual states that true should be returned
iff neither operands is QNAN. ( http://llvm.org/docs/LangRef.html#i_fcmp)
If I do fcmp one which includes one or both operands as a NaN, the result is
expected to be 0 then.
If I run the bitcode with lli (JIT off), no problem. If I use the
2009 Mar 24
0
repolr output
Hello all,
I am unsure of how to interpret the output from a Generalized Estimating
Equation analysis of an ordinal response. I hope someone can enlighten
me. The analysis was done using package 'repolr'. The data consists of
a Score on a 3-point scale from 56 Subjects after repeatedly washing
their hands with soap. Two soap Products were tested, each panelist
washed 10 times = 10
2011 Jan 07
9
Various Questions
On Fri 07 January 2011 08:14:17 Hubert Kario wrote:
> I''d suggest at least
> mkfs.btrfs -m raid1 -d raid0 /dev/sdc /dev/sdd
> if you really want raid0
I don''t fully understand -m or -d. Why would this make a truer raid0 that with no options?
Is it necessary to use fdisk on new drives in creating a BTRFS multi-drive array? Or is this all that''s needed:
#
2016 Aug 10
0
CentOS-announce Digest, Vol 138, Issue 4
Send CentOS-announce mailing list submissions to
centos-announce at centos.org
To subscribe or unsubscribe via the World Wide Web, visit
https://lists.centos.org/mailman/listinfo/centos-announce
or, via email, send a message with subject or body 'help' to
centos-announce-request at centos.org
You can reach the person managing the list at
centos-announce-owner at centos.org
When
2013 Oct 09
0
[LLVMdev] Related constant folding of floating point values
Hi Arsen,
On Oct 9, 2013, at 4:53 AM, Arsen Hakobyan <artinetstudio at gmail.com> wrote:
> Hi all,
>
> I have the following test case:
> #define FLT_EPSILON 1.19209290E-7
>
> int err = -1;
> int main()
> {
> float a = 8.1;
> if (((a - 8.1) >= FLT_EPSILON) || ((a - 8.1) <= -FLT_EPSILON)) { //I am
> using FLT_EPSILON to check whether (a != 2.0).
2013 Jul 18
0
[LLVMdev] SIMD instructions and memory alignment on X86
Are you able to send any IR for others to reproduce this issue?
On Wed, Jul 17, 2013 at 11:23 PM, Peter Newman <peter at uformia.com> wrote:
> Unfortunately, this doesn't appear to be the bug I'm hitting. I applied
> the fix to my source and it didn't make a difference.
>
> Also further testing found me getting the same behavior with other SIMD
> instructions.
2009 Dec 02
1
[LLVMdev] LLVM 2.6 -> SVN breaks this
The LLVM 2.6-compatible IR below is derived from the HLVM test suite and is
one of the things I've noticed going wrong. However, I just discovered that
it works with LLVM 2.6 and with LLVM SVN when run through lli or llc
without -tailcallopt but when I use:
$ llvm-as -f aout.ll
$ llc -tailcallopt -f aout.bc -o aout.s
$ gcc -lm aout.s -o aout
and the latest LLVM SVN it starts to print
2013 Jul 18
2
[LLVMdev] SIMD instructions and memory alignment on X86
Unfortunately, this doesn't appear to be the bug I'm hitting. I applied
the fix to my source and it didn't make a difference.
Also further testing found me getting the same behavior with other SIMD
instructions. The common factor is in each case, ECX is set to
0x7fffffff, and it's an operation using xmm ptr ecx+offset .
Additionally, turning the optimization level passed to
2013 Jul 19
2
[LLVMdev] SIMD instructions and memory alignment on X86
I've attached the module->dump() that our code is producing.
Unfortunately this is the smallest test case I have available.
This is before any optimization passes are applied. There are two
separate modules in existence at the time, and there are no guarantees
about the order the surrounding code calls those functions, so there may
be some interaction between them? There shouldn't
2012 Jul 31
3
[LLVMdev] [DragonEgg] Mysterious FRAME coming from gimple to LLVM
Hi Duncan,
A DragonEgg/GCC-related question: do you know where these strange FRAME
tokens originate from (e.g. %struct.FRAME.matmul)? Compiling simple Fortran
code with DragonEgg:
> cat matmul.f90
subroutine matmul(nx, ny, nz)
implicit none
integer :: nx, ny, nz
real, dimension(nx, ny) :: A
real, dimension(ny, nz) :: B
real, dimension(nx, nz) :: C
integer :: i, j, k
real,
2012 Jul 31
0
[LLVMdev] [DragonEgg] Mysterious FRAME coming from gimple to LLVM
According to comment in tree-nested.c, these frames should be only
introduced in case of debug or OpenMP lowering:
/* A subroutine of convert_nonlocal_reference_op. Create a local variable
in the nested function with DECL_VALUE_EXPR set to reference the true
variable in the parent function. This is used both for debug info
and in OpenMP lowering. */
However, in this code example we
2020 Feb 27
2
[PATCH] Update the 5 year logo to 10 year logo
Already outdated, but rounded ;)
I literally just opened the 5yrs logo, changed the text and then done:
inkscape -z -o logo/fish-10yrs.{png,svg}
cp {logo,website}/fish-10yrs.svg
and then updated the rest of the files.
Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
---
Makefile.am | 2 +
logo/fish-10yrs.png | Bin 0 -> 65790 bytes
logo/fish-10yrs.svg |
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
Signed-off-by: Scott Seago <sseago at redhat.com>
---
AUTHORS | 17 ++++++
README | 10 +++
conf/ovirt-agent | 12 ++++
conf/ovirt-db-omatic | 12 ++++
conf/ovirt-host-browser | 12 ++++