search for: lateron

Displaying 20 results from an estimated 32 matches for "lateron".

Did you mean: later
2009 Aug 04
3
Accuracy (PR#13867)
...0.4,0.1,0.25,0.4,0.2,0.5,0.8,0.2,0.5,0.8,0.2,0.5,0.8,0.2,0.5,0.8) p_2=c(0,0,0,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.25,0.1,0.4,0.25,0.1,0.4,0.25,0.1,0.4,0.25,0.1) As these are probabilities, I calculated the remainder as p_3=1-p_1-p_2 There the values which ought to be 0.1 were lateron not recognised by p_3==0.1, but only if I used p_3 <= 0.1. The full calculation is actually bigger but the core issue remains: I used values input by hand, built a difference and it was wrong. I know that exactly the value 0.1 is one that can not be represented using binary rep. Maybe that'...
2004 Sep 10
2
Push/Pull Model
Hi, The stream decoder follows a push model, however, I need a pull model decoder, like, for example, implemented by the Vorbis libs. For this I simply save the pointer to the audio data in the read callback and acces the data lateron after the call to FLAC__stream_decoder_process_one_frame returned. Is this safe? Can I assume that the internal buffer is not freed, when FLAC__stream_decoder_process_one_frame returns, or will I have to copy the data to a temporary buffer? Thanks in advance, Ingo
2006 May 22
1
Active Record Migrations -> Table Relations
...nvestingation ROR. I really like the idea of specifying my database schema via Migrations, but one questions came to my mind. How does one specify Table relations in the migration ? 1. There is a fancy way of doing it with Active Records. 2. I just add manually some Integer ID columns etc... and lateron add the Foreign Key semantic via SQL.. Which one of the above holds true ? I was not able to find anythign in the documentation about it... Thanks -- Posted via http://www.ruby-forum.com/.
2013 Mar 05
1
Generating 1-bit and 8-bit BMP files using R
Hi, I'm trying to use the data which I generate within R to make images in .bmp format to be lateron printed by a printer. My first thought was the RImageJ package, but this seems to be discontinued. What I am currently doing is generating a matrix of grey values, which needs to be parsed into the right image format. Is anyone aware of a package or rather "easy" way to generate these im...
2013 Nov 21
2
[PATCH RFC 0/3] virtio: add new notify() callback to virtio_driver
...y handler in virtio_ccw's transport layer to pass >> on the lost device info to virtio's backend driver virtio_blk. > > Question: I guess remove callback is invoked eventually? > Could you please clarify why isn't this sufficient? > yes, the remove callback is invoked lateron, and it could be done there. However, it should be done conditionally, and prior to invoking del_gendisk() (which triggers final I/O). We would still have the need for such notification information. The remove callback is also invoked when a device is set offline, and in that case we don't...
2013 Nov 21
2
[PATCH RFC 0/3] virtio: add new notify() callback to virtio_driver
...y handler in virtio_ccw's transport layer to pass >> on the lost device info to virtio's backend driver virtio_blk. > > Question: I guess remove callback is invoked eventually? > Could you please clarify why isn't this sufficient? > yes, the remove callback is invoked lateron, and it could be done there. However, it should be done conditionally, and prior to invoking del_gendisk() (which triggers final I/O). We would still have the need for such notification information. The remove callback is also invoked when a device is set offline, and in that case we don't...
2013 Nov 20
9
[PATCH RFC 0/3] virtio: add new notify() callback to virtio_driver
Hi, when an active virtio block device is hot-unplugged from a KVM guest, running affected guest user applications are not aware of any errors that occur due to the lost device. This patch-set adds code to avoid further request queueing when a lost block device is detected, resulting in appropriate error info. On System z there exists no handshake mechanism between host and guest when a device
2013 Nov 20
9
[PATCH RFC 0/3] virtio: add new notify() callback to virtio_driver
Hi, when an active virtio block device is hot-unplugged from a KVM guest, running affected guest user applications are not aware of any errors that occur due to the lost device. This patch-set adds code to avoid further request queueing when a lost block device is detected, resulting in appropriate error info. On System z there exists no handshake mechanism between host and guest when a device
2007 Jun 26
1
Memory Experimentation: Rule of Thumb = 10-15 Times the Memory
...tions for me here: first, to read a .csv file, I need to have at least 10-15 times as much memory as the file that I want to read---a lot more than the factor of 3-4 that I had expected. The moral is that IF R can read a .csv file, one need not worry too much about running into memory constraints lateron. {R Developers---reducing read.csv's memory requirement a little would be nice. of course, you have more than enough on your plate, already.} Second, memory is not returned fully to the OS. This is not necessarily a bad thing, but good to know. Hope this helps... Sincerely, /iaw
2008 Aug 05
4
literate programming
I'm working on the next iteration of coxme. (Rather slowly during the summer). This is the most subtle code I've done in S, both mathematically and technically, and seems a perfect vehicle for the "literate programming" paradym of Knuth. The Sweave project is pointed at S output however, not source code. I would appreciate any pointers to an noweb type client that was
2008 Dec 18
2
X11 is not availble
Hi there, after several problems with installing R on a Debian server It now finally works at least roughly. With roughly I mean that the 'core' function do work properly, but I'm still having problems with the image export. When I try to call png(filename="my_file.png", width=800, height=300, pointsize=12, bg = "white") I just get the error message
2007 Aug 09
1
Memory Experimentation: Rule of Thumb = 10-15 Times the Memory
...first, to read a > .csv file, I need to have at least 10-15 times as much memory as the > file that I want to read---a lot more than the factor of 3-4 that I > had expected. The moral is that IF R can read a .csv file, one need > not worry too much about running into memory constraints lateron. {R > Developers---reducing read.csv's memory requirement a little would be > nice. of course, you have more than enough on your plate, already.} > > Second, memory is not returned fully to the OS. This is not > necessarily a bad thing, but good to know. > > Hope this he...
2013 Nov 21
5
[PATCH v2 RFC 0/3] virtio: add new notify() callback to virtio_driver
Hi, here is an updated patch-set with changes as suggested by Michael Tsirkin. When an active virtio block device is hot-unplugged from a KVM guest, running affected guest user applications are not aware of any errors that occur due to the lost device. This patch-set adds code to avoid further request queueing when a lost block device is detected, resulting in appropriate error info. On System z
2013 Nov 21
5
[PATCH v2 RFC 0/3] virtio: add new notify() callback to virtio_driver
Hi, here is an updated patch-set with changes as suggested by Michael Tsirkin. When an active virtio block device is hot-unplugged from a KVM guest, running affected guest user applications are not aware of any errors that occur due to the lost device. This patch-set adds code to avoid further request queueing when a lost block device is detected, resulting in appropriate error info. On System z
2009 Aug 23
0
[LLVMdev] LLVMContext: Suggestions for API Changes
On Aug 23, 2009, at 4:29 PM, Albert Graef <Dr.Graef at t-online.de> wrote: > > One thing I noticed is that writing LLVM assembler code (print() > methods) seems to be horribly slow now (some 4-5 times slower than in > LLVM 2.5). This is a real bummer for me, since Pure's batch compiler > uses those methods to produce output code which then gets fed into > llvmc. >
2000 Oct 16
1
build errors in configure script (PR#697)
Full_Name: flip phillips Version: 1.1.1 OS: Mac OS X Submission from: (NULL) (24.29.65.207) the lack of '-lm' in the Macintosh OS X / Dylan release seems to play a bit of havoc w/ the build. For example, the test for libf2c.a fails, not because the library is missing, but because -lm is missing. (the configure looks a little like it wants to check for it but it doesn't really need
2013 Nov 20
0
[PATCH RFC 1/3] virtio: add notify() callback to virtio_driver
Add an optional notify() callback to virtio_driver. A backend driver can provide this callback to perform actions for a lost device. notify() event values are inherited from virtio_ccw's notify() callback. We might want to support even more of them lateron. notify() return values are defined in include/linux/notifier.h. Signed-off-by: Heinz Graalfs <graalfs at linux.vnet.ibm.com> --- drivers/virtio/virtio.c | 8 ++++++++ include/linux/virtio.h | 10 ++++++++++ 2 files changed, 18 insertions(+) diff --git a/drivers/virtio/virtio.c b/driver...
2013 Nov 21
0
[PATCH v2 RFC 1/3] virtio: add notify() callback to virtio_driver
Add an optional notify() callback to virtio_driver. A backend driver can provide this callback to perform actions for a lost device. notify() event values are inherited from virtio_ccw's notify() callback. We might want to support even more of them lateron. notify() return values are defined in include/linux/notifier.h. Signed-off-by: Heinz Graalfs <graalfs at linux.vnet.ibm.com> --- drivers/virtio/virtio.c | 9 +++++++++ include/linux/virtio.h | 10 ++++++++++ 2 files changed, 19 insertions(+) diff --git a/drivers/virtio/virtio.c b/drive...
2004 Jan 15
0
Possible Bug: Crash when Parking Calls
...00 on phone '200' 3) hear the voice and get the call back (dial 701 on phone '200') the steps can be repeated. But * crahes if I do the following during the same call: 4) pree # and dial 700 on phone '100' I can reproduce this. Every time I park a call first on one end and lateron on the other end, * crahes. On console I see the following: -------snip------- -- Called phone -- SIP/phone-c9da is ringing -- SIP/phone-c9da answered SIP/kwe-9857 -- Attempting native bridge of SIP/kwe-9857 and SIP/phone-c9da -- Started music on hold, class 'default',...
2013 Nov 21
0
[PATCH RFC 0/3] virtio: add new notify() callback to virtio_driver
...ansport layer to pass > >>on the lost device info to virtio's backend driver virtio_blk. > > > >Question: I guess remove callback is invoked eventually? > >Could you please clarify why isn't this sufficient? > > > > yes, the remove callback is invoked lateron, and it could be done > there. However, it should be done conditionally, and prior to > invoking del_gendisk() (which triggers final I/O). We would still > have the need for such notification information. The remove callback > is also invoked when a device is set offline, and in that ca...