search for: infintive

Displaying 19 results from an estimated 19 matches for "infintive".

Did you mean: infintie
2013 Jun 17
2
SVMREF infinte number of genes
dear all, I am a student in cs college. I would like to know how to plot infinte number of genes after using the svm. the data set i have consists of x which is a matrix of 39 cancer patients [rows] and 2000 gene names [colmns]. each cell is the value of the gene for a particular patient. there are two types of cancer people representedas factor y. here is the code: library(e1071) #load
2008 Nov 22
5
Infinte loop in RtlPrefetchMemoryNonTemporal under Windows
I have been trying to track down a problem that occurs when my GPLPV drivers give Windows a packet with the NdisPacketTcpChecksumSucceeded flag set. The problem is that the machine locks hard. After some tedious work with the debugger, I have found that Windows makes a call to a routine called RtlPrefetchMemoryNonTemporal, which looks like this: 8088e579 mov eax,dword ptr
2004 Aug 06
3
how to modify ices source?
i have the same need, via otto Brendan Cully wrote: [snip] > Ices will reload the playlist file if it changes on disk. So if the > file changes every track, everything will be fine. Alternatively you > could write your MP3 to a FIFO, which ices could pipe to your icecast > server. that looks like an interesting alternative, tho i have no clue how to do that, and particularly in the
2010 Jul 26
1
[LLVMdev] Floating-Point Overflow check
Hello, i know that the result is infinte, but there are sill flags in the FPU which indicate that an overflow, underflow or div by zero occured. So isn't there an easy way to check if one of those flags is set? 2010/7/23 John McCall <rjmccall at apple.com> > On Jul 23, 2010, at 7:20 AM, Steffen Geißinger wrote: > > i need to check if an overflow of an floating-point
2002 Dec 16
0
re large files with 2.2.7a
...kup > utility, is bigger than 11 Gbyte. I tried nearly every possible way, > with smaller files (of course), smbclient tar and get. but a big file is > not transferable. At least, the filesize is no displayed correctly. but > the file is always either cut of in the middle, or just grows infintive. > I tried taring whole directories over smbclient, that worked, the file > was good and big (5.3G, but many small files transfered, of course). I > thought that the file size limit from 4 gbyte was not applicant any > more.. or am i wrong? am I just totally confused? does anybody have...
2008 May 27
1
error in rsync protocol data stream (Marten Lehmann)
rsync-request@lists.samba.org escribi?: > Send rsync mailing list submissions to > rsync@lists.samba.org > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.samba.org/mailman/listinfo/rsync > or, via email, send a message with subject or body 'help' to > rsync-request@lists.samba.org > > You can reach the person managing the list at
2019 Jul 09
2
[LLVM] Infinite loop during LLVM InstructionCombining pass optimization
If you're able to reproduce the infinite loop with -O3 then you should be able to dump out the IR that causes `opt -instcombine` to infloop, unless the bug is truly esoteric (e.g. only caused by a specific use-list ordering). Maybe take a closer look at the output from `opt -print-before-all -O3`? Alternatively you can use bugpoint to minimize the IR to get a small reproducer that causes
2010 Jul 23
0
[LLVMdev] Floating-Point Overflow check
On Jul 23, 2010, at 7:20 AM, Steffen Geißinger wrote: > i need to check if an overflow of an floating-point arithmetic operation occured. > Currently I'm doing something like this (for addition): > > (LHS > 0 && RHS > 0 && sum <= 0) || (LHS < 0 && RHS < 0 && sum >= 0) IEEE floating-point doesn't overflow like this; if the
2004 Aug 06
0
how to modify ices source?
> > Ices will reload the playlist file if it changes on disk. So if the > > file changes every track, everything will be fine. Alternatively you > > could write your MP3 to a FIFO, which ices could pipe to your icecast > > server. > > that looks like an interesting alternative, tho i have no clue how to do > that, and particularly in the context of otto (which,
2006 Mar 15
1
DO NOT REPLY [Bug 3609] New: Bad behavior when there are IO errors on reading.
https://bugzilla.samba.org/show_bug.cgi?id=3609 Summary: Bad behavior when there are IO errors on reading. Product: rsync Version: 2.6.7 Platform: x86 OS/Version: Linux Status: NEW Severity: major Priority: P3 Component: core AssignedTo: wayned@samba.org ReportedBy: jhlj@statsbiblioteket.dk
2010 Jan 18
0
Fix for bug in match()
Hello all, I posted the following bug last week: # These calls work correctly: match(c("A", "B", "C"), c("A","C"), incomparables=NA) # okay match(c("A", "B", "C"), "A") # okay match("A", c("A", "B"), incomparables=NA) # okay # This one causes R to hang: match(c("A",
2001 Feb 18
1
granulepos
Hi, I can't seem to find any docs on the "granulepos" field. What does it represent? I know it's zero for header pages and non-zero for body pages, but that it can also be -1. When is it -1? And while I'm at it, is there any invalid serial number, that is guarenteed never to appear in a page? 0? -1? Thanks, Martin --- >8 ---- List archives:
2010 Mar 13
3
(no subject)
Dear Colleagues, We are attempting to create trees using R with our Ruby on Rails application. However, we are running into a problem involving the creation of the graphic. We would like them to be in either jpg or png format so that users can save, but due to a lack of control over our sever we are unable to start X11 server. Is there a way to create these images without using X11 server?
2014 Feb 02
1
Trouble implementing ov_callbacks, endless loop calling seek_func
Hello list, I've been having a tough time adding windows resource support to my ogg vorbise decoder, although I think I am close. Basically when I call ov_open_callbacks(), it doesn't ever return and repeatedly calls my seek_func. I'm hoping it is something obvious, but I can't see why my seek_func is being called endlessly. If the file is seekable, I should return 0, right? If
2010 Jul 23
4
[LLVMdev] Floating-Point Overflow check
Hi, i need to check if an overflow of an floating-point arithmetic operation occured. Currently I'm doing something like this (for addition): (LHS > 0 && RHS > 0 && sum <= 0) || (LHS < 0 && RHS < 0 && sum >= 0) This is checked for every addition. Is there a more efficient way like the intrisic for int overflow? How is it possible to raise a
2004 Aug 06
4
how to modify ices source?
On Wednesday, 01 August 2001 at 15:12, Robin P. Blanchard wrote: > > > > Ices will reload the playlist file if it changes on disk. So if the > > > file changes every track, everything will be fine. Alternatively you > > > could write your MP3 to a FIFO, which ices could pipe to your icecast > > > server. > > > > that looks like an interesting
2023 Jul 09
4
[PATCH v2 0/2] vhost-scsi: Fix IO hangs when using windows
The following patches were made over Linus's tree and fix an issue where windows guests will send iovecs with offset/lengths that result in IOs that are not aligned to 512. The LIO layer will then send them to Linux's FS/block layer but it requires 512 byte alignment, so depending on the FS/block driver being used we will get IO errors or hung IO. The following patches have vhost-scsi
2023 May 24
4
[PATCH 0/3] vhost-scsi: Fix IO hangs when using windows
The following patches were made over Linus's tree and fix an issue where windows guests will send iovecs with offset/lengths that result in IOs that are not aligned to 512. The LIO layer will then send them to Linux's block layer but it requires 512 byte alignment, so depending on the block driver being used we will get IO errors or hung IO. The following patches have vhost-scsi detect
2016 Oct 13
2
Loop Unrolling Fail in Simple Vectorized loop
If count > MAX_UINT-4 your loop loops indefinitely with an increment of 4, I think. On Thu, Oct 13, 2016 at 4:42 PM, Charith Mendis via llvm-dev < llvm-dev at lists.llvm.org> wrote: > So, I tried unrolling the following simple loop. > > int unroll(unsigned * a, unsigned * b, unsigned *c, unsigned count){ > > for(unsigned i=0; i<count; i++){ > > a[i] =