search for: dg

Displaying 20 results from an estimated 468 matches for "dg".

Did you mean: gd
2009 Jan 19
2
[LLVMdev] llvm-gfortran test results
...is now fixed with respect to the extra warnings that were being emitted by the gfortran compiler. The gfortran testsuite results under Intel Darwin9 are appended below. Jack Native configuration is i686-apple-darwin9 === gfortran tests === Running target unix/-m32 FAIL: gfortran.dg/aint_anint_1.f90 -O (internal compiler error) FAIL: gfortran.dg/aint_anint_1.f90 -O (test for excess errors) FAIL: gfortran.dg/array_constructor_11.f90 -O0 (internal compiler error) FAIL: gfortran.dg/array_constructor_11.f90 -O0 (test for excess errors) WARNING: gfortran.dg/array_constructo...
2009 Aug 23
0
[LLVMdev] x86_64 darwin multilib gfortran testresults
...g the i386 multilib under the x86_64-apple-darwin build... http://lists.cs.uiuc.edu/pipermail/llvmdev/2009-August/025040.html the following gfortran testsuite results are obtained... Native configuration is x86_64-apple-darwin10 === gfortran tests === Running target unix/-m32 FAIL: gfortran.dg/aint_anint_1.f90 -O (internal compiler error) FAIL: gfortran.dg/aint_anint_1.f90 -O (test for excess errors) FAIL: gfortran.dg/assumed_charlen_function_3.f90 -O (internal compiler error) FAIL: gfortran.dg/assumed_charlen_function_3.f90 -O (test for excess errors) FAIL: gfortran.dg/assumed_c...
2008 Jun 10
1
[LLVMdev] llvm-gcc4.2-2.3 gfortran failures
Building llvm 2.3 and llvm-gcc4.2-2.3 on Mac OS X 10.5, I am seeing the following failures remaining in the gcc 4.2.1 gfortran testsuite... LAST_UPDATED: Native configuration is i686-apple-darwin9 === gfortran tests === Running target unix FAIL: gfortran.dg/actual_array_constructor_1.f90 -O1 execution test FAIL: gfortran.dg/actual_array_constructor_1.f90 -O2 execution test FAIL: gfortran.dg/actual_array_constructor_1.f90 -O3 -fomit-frame-pointer execution test FAIL: gfortran.dg/actual_array_constructor_1.f90 -O3 -fomit-frame-pointer -funroll-lo...
2008 Nov 02
1
[LLVMdev] llvm-2.4 prerelease gfortran results
...inate-unused-debug-symbols }}" /* APPLE LOCAL AltiVec */ to allow gfortran to build and compile without extra warnings produces the appended gfortran testsuite results. LAST_UPDATED: Native configuration is i686-apple-darwin9 === gfortran tests === Running target unix FAIL: gfortran.dg/aint_anint_1.f90 -O (internal compiler error) FAIL: gfortran.dg/aint_anint_1.f90 -O (test for excess errors) FAIL: gfortran.dg/array_constructor_11.f90 -O0 (internal compiler error) FAIL: gfortran.dg/array_constructor_11.f90 -O0 (test for excess errors) WARNING: gfortran.dg/array_constructo...
2007 Sep 22
2
[LLVMdev] LLVM 2.1 Pre-release Version 2 Online
LLVMers, The LLVM 2.1 pre-release version2 is now available: http://llvm.org/prereleases/2.1/version2/ You can help test this pre-release by doing one of the following: 1) Download llvm-2.1, llvm-test-2.1, and the appropriate llvm-gcc4.0 binary. Run "make check" and the full llvm-test suite (make TEST=nightly report). 2) Download llvm-2.1, llvm-test-2.1, and the llvm-gcc4.0 source.
2008 Feb 27
4
[LLVMdev] llvm/test: suffix or operands invalid for `push'
...ning target unix Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target. Using /usr/share/dejagnu/config/unix.exp as generic interface file for target. WARNING: Couldn't find tool config file for unix, using default. Running /home/jo/Delta/llvm/test/Analysis/Andersens/dg.exp ... Running /home/jo/Delta/llvm/test/Analysis/BasicAA/dg.exp ... Running /home/jo/Delta/llvm/test/Analysis/Dominators/dg.exp ... Running /home/jo/Delta/llvm/test/Analysis/GlobalsModRef/dg.exp ... Running /home/jo/Delta/llvm/test/Analysis/LoadVN/dg.exp ... Running /home/jo/Delta/llvm/test/Analys...
2012 Aug 30
0
[PATCH 02/11] vmci_datagram.patch: VMCI datagram entity handling.
...host. + */ +struct datagram_entry { + struct vmci_resource resource; + u32 flags; + bool runDelayed; + vmci_datagram_recv_cb recvCB; + void *clientData; + wait_queue_head_t destroyEvent; + u32 privFlags; +}; + +struct delayed_datagram_info { + bool inDGHostQueue; + struct datagram_entry *entry; + struct vmci_datagram msg; +}; + +static atomic_t delayedDGHostQueueSize; + +static void dg_free_cb(void *clientData) +{ + struct datagram_entry *entry = (struct datagram_entry *)clientData; + ASSERT(entry); + + /* + *...
2012 Aug 30
0
[PATCH 02/11] vmci_datagram.patch: VMCI datagram entity handling.
...host. + */ +struct datagram_entry { + struct vmci_resource resource; + u32 flags; + bool runDelayed; + vmci_datagram_recv_cb recvCB; + void *clientData; + wait_queue_head_t destroyEvent; + u32 privFlags; +}; + +struct delayed_datagram_info { + bool inDGHostQueue; + struct datagram_entry *entry; + struct vmci_datagram msg; +}; + +static atomic_t delayedDGHostQueueSize; + +static void dg_free_cb(void *clientData) +{ + struct datagram_entry *entry = (struct datagram_entry *)clientData; + ASSERT(entry); + + /* + *...
2010 May 23
4
creating a reverse geometric sequence
Hello, Can anyone think of a non-iterative way to generate a decreasing geometric sequence in R? For example, for a hypothetical function dg, I would like: > dg(20) [1] 20 10 5 2 1 where I am using integer division by 2 to get each subsequent value in the sequence. There is of course: dg <- function(x) { res <- integer() while(x >= 1) { res <- c(res, x) x <- x %/% 2 } res } > dg(20) [1...
2012 Jan 27
1
CentOS 6.2 XEN 4.1.2 Serial console
...something I''m missing out here I''ve gone through many many xen-list archives and google searches and can''t find a solution for my issue. Your advise would be thanked for ever. -- David Gonzalez H. Bogota: +(57-1)289-1168 Medellin: +(57-1)247-0985 Cel: +(57)315-838-8326 DGHVoIP - OPEN SOURCE TELEPHONY SOLUTIONS http://www.dghvoip.com/ Proud Linux User #294661 _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2018 Feb 03
4
Unfortunate results from fake-super
When using fake-super mode in an rsync receiver, anything that's neither a file nor a directory (e.g. devices, symlinks, etc) is converted into a file, and properties such as original ownership, filetype, and permissions are stored in a specific extended attribute. In the case of a symlink, the contents of the link are stored in a plain file. The original mode of the symlink is normally
2009 Feb 23
1
[LLVMdev] 2.5 Pre-release2 available for testing
On Mon, Feb 23, 2009 at 12:12 AM, Aaron Gray < aaronngray.lists at googlemail.com> wrote: > On Sun, Feb 22, 2009 at 11:15 PM, Anton Korobeynikov < > anton at korobeynikov.info> wrote: > >> >> Actually its [configure-stage3-intl] where its hanging. >> >> This can easily be due to inline FP math in the stdlib headers. For >> example - I had to
2018 Feb 03
0
Unfortunate results from fake-super
...l#a2503261> > > .Dave. > > -- > Sent from: http://samba.2283325.n4.nabble.com/Samba-rsync-f2500462.html > Hmm, the forum seems to have dropped the example (which was in 'raw' tags to preserve the formatting). Oh well, here it is ... Example: As regular user 'dg': dg$ mkdir src dg$ touch src/foo dg$ chmod 444 src/foo dg$ ln -s foo src/bar Then as trusted (but unprivileged) user 'backup': backup$ id -a uid=1000(backup) gid=1000(backup) groups=1000(backup),100(users) backup$ umask 0022 backup$ rsync -av src/ dst-nonsuper/ backup$ rsync -av --fak...
2008 Nov 02
1
[LLVMdev] llvm-2.4 prerelease gfortran results
Anton, With regard to the gfortran test cases which don't fail on x86_64 Linux, these are the exact gfortran.log entries for them under i686 Darwin9... > FAIL: gfortran.dg/array_constructor_12.f90 -O0 (internal compiler error) > FAIL: gfortran.dg/array_constructor_12.f90 -O0 (test for excess errors) Executing on host: /sw/src/fink.build/llvm-gcc42-2.4-1/llvm_gcc42_objdir/gcc/testsuite/gfortran/../../gfortran -B/sw/src/fink.build/llvm-gcc42-2.4-1/llvm_gcc42_ob...
2006 Apr 13
3
[LLVMdev] Re: Creating Release 1.7 Branch at 1:00pm PDT
Here's what's left on Linux (GCC 4.1.0), after all updates that went into the branch: Running /proj/llvm/build/../llvm/test/Regression/CFrontend/dg.exp ... FAIL: /proj/llvm/build/../llvm/test/Regression/CFrontend/2004-02-12- LargeAggregateCopy.c.tr: gccas: /proj/llvm/build/../llvm/lib/VMCore/Function.cpp:266: unsigned int llvm::Function::getIntrinsicID() const: Assertion `0 && "Unknown LLVM intrinsic function!"' failed....
2007 Apr 25
2
assigning two conditions to grep()
Hi, i have a problem in assigning 2 conditions to grep() , my data look like this: DA 24 N7 Rad= 3.4 20 Sac= 0.93 Acc= 4.76 DA 24 N7 Rad= 3.4 14 Sac= 0.65 Acc= 3.33 DA 24 N7 Rad= 3.4 3 Sac= 0.14 Acc= 0.71 DA 24 N7 Rad= 3.4 11 Sac= 0.51 Acc= 2.62 DG 23 N7 Rad= 3.4 8 Sac= 0.37 Acc= 1.91 DG 23 N7 Rad= 3.4 5 Sac= 0.23 Acc= 1.19 DG 23 N7 Rad= 3.4 0 Sac= 0.00 Acc= 0.00 DG 23 N7 Rad= 3.4 3 Sac= 0.14 Acc= 0.71 DG 23 O6 Rad= 3.3 0 Sac= 0.00 Acc= 0.00 DG 23 O6 Rad= 3.3 1 Sac= 0.04 Acc= 0.22 DG 23 O6 Rad= 3.3 0 Sac= 0.00 Acc= 0.00 DG 23 O6 Rad...
2004 Mar 04
2
Compiling under kernel 2.6.0 and after
Hi, I'm trying to compile Samba 3.0.2a under Linux 2.6.3 (same problem on all 2.6.x kernels) and get the following error chucked out. Only occurs with --with-smbmount as you might expect from the file it fails on. Anyone else had this problem and fixed it? Regards Dan In file included from /usr/include/linux/fs.h:20, from /usr/include/linux/smb_fs.h:15,
2008 Jun 10
3
[LLVMdev] DejaGNU test fixes
...nu === tests === Schedule of variations: unix Running target unix Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target. Using /usr/share/dejagnu/config/unix.exp as generic interface file for target. Running /home/kooijman/src/llvm-trunk/test/Analysis/Andersens/dg.exp ... Running /home/kooijman/src/llvm-trunk/test/Analysis/BasicAA/dg.exp ... Running /home/kooijman/src/llvm-trunk/test/Analysis/Dominators/dg.exp ... Running /home/kooijman/src/llvm-trunk/test/Analysis/GlobalsModRef/dg.exp ... Running /home/kooijman/src/llvm-trunk/test/Analysis/LoadVN/dg.exp ......
2009 Jul 25
2
[LLVMdev] GCC DejaGNU regressions
...crubbed... Name: nonnull-3.c Type: application/octet-stream Size: 5404 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090724/6b1e5042/attachment.obj> -------------- next part -------------- Here's another test that aborts at runtime (it's gcc.dg/pr26719.c): /* { dg-do compile } */ /* { dg-do run } */ /* { dg-options "-O2" } */ void abort (void); int table[32][256]; int main(void) { int i, j; for (i = 0; i < 32; i++) for (j = 0; j < 256; j++) table[i][j] = ((signed char)j) * i; if (table[9][132] !=...
2012 Jun 22
3
removing NA from a data frame
...64 64 64 64 ... $ DIAGNOS: Factor w/ 173 levels "F20","F200","F2000",..: 128 128 128 128 105 105 105 160 105 105 ... $ X_DATE : int 20060821 20061207 20080102 20090904 20010327 20010925 20020307 20021007 20021007 20030320 ... $ SOURCE : int 2 2 2 2 2 2 2 2 2 1 ... $ dg : Factor w/ 7 levels "0","1","2","3",..: 6 6 6 6 5 5 5 6 5 5 ... The only NAs are in the factor dg (put in by 'recode' from the car library; I'm trying to eliminate cases with particular factor levels) > table ( ex10s$dg ) 0...