search for: upfront

Displaying 20 results from an estimated 256 matches for "upfront".

2008 Jul 10
4
Turn any vector
...or so it starts with it's end. For better understanding, this set of commands will do what I need: i <- seq(1:10) i_turned <- i for (j in 1:length(i)) i_turned[j] <- i[length(i)-j+1] now, i_turned is what I call turned. Is there a function which would make a script lighter? Thank you upfront for any hint. Best regards, Zroutik [[alternative HTML version deleted]]
2010 Jan 27
1
domain -> IP
How can I map from a domain to the IP(s) given to its network interfaces? I'm not specifying a <mac .../> to the domain, so I don't have an upfront mapping setup. Is the best way to do some upfront mapping, e.g. install static MAC -> IP in the DHCP server and add <mac .../> to my domains? Best, matt
2009 Apr 27
6
[PATCH RFC 0/8] virtio: add guest MSI-X support
Add optional MSI-X support: use a vector per virtqueue with fallback to a common vector and finally to regular interrupt. Teach all drivers to use it. I added 2 new virtio operations: request_vqs/free_vqs because MSI needs to know the total number of vectors upfront. Signed-off-by: Michael S. Tsirkin <mst at redhat.com> --- Here's a draft set of patches for MSI-X support in the guest. It still needs to be tested properly, and performance impact measured, but I thought I'd share it here in the hope of getting some very early feedback/flames....
2009 Apr 27
6
[PATCH RFC 0/8] virtio: add guest MSI-X support
Add optional MSI-X support: use a vector per virtqueue with fallback to a common vector and finally to regular interrupt. Teach all drivers to use it. I added 2 new virtio operations: request_vqs/free_vqs because MSI needs to know the total number of vectors upfront. Signed-off-by: Michael S. Tsirkin <mst at redhat.com> --- Here's a draft set of patches for MSI-X support in the guest. It still needs to be tested properly, and performance impact measured, but I thought I'd share it here in the hope of getting some very early feedback/flames....
2016 Jan 21
2
Need to refactor relocation handlers in ELF LLD
...way from coding and catching up on code review, but I agree > that this is important and will try to improve things a bit in here > before going back to code review (and then LTO). > > What I will probably try first is reordering output so that we don't > need to compute the size upfront. That should give us quite a bit of > flexibility in refactoring anything else. I don't know if it will be > too costly, but I will report on anything I find. > I don't know if computing the size upfront increased complexity. Was it? -------------- next part -------------- An HTML...
2016 Mar 29
2
MCJIT versus Orc
When writing a JIT compiler using LLVM, as I understand it, you can use two alternative APIs, MCJIT and Orc. The latter offers lazy compilation. Would it be accurate to say that if you want eager compilation - always compile an entire module upfront - you should use MCJIT? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160329/b2904326/attachment.html>
2007 Jun 18
2
SIP Termination with automatic debit
Can anyone recommend any wholesale SIP termination providers that will automatically charge a credit card? Most seem to want upfront payment and a credit balance but that sucks when you have to watch it like a hawk to make sure the balance never hits zero. I'm looking for a provider that can automatically charge a credit card. Douglas. -------------- next part -------------- An HTML attachment was scrubbed... URL: ht...
2012 Jul 30
4
Xen Development Projects page
Hi, I think it is time we start preparing and managing correctly a Xen Development wiki page. We already have one but it is a bit un-organized, with stale and poor content. I wanted to organize the page like that: - Have upfront a list of tasks, divided by subsystem (es. toolstack, hypervisor, domain support, etc.) - Have the corresponding entries organized like that: o Technical contact (this may be optional if we think the idea is worthwhile but there is not really someone which can tackle this right now). There ma...
2016 Mar 29
0
MCJIT versus Orc
...lvm-dev at lists.llvm.org> writes: > When writing a JIT compiler using LLVM, as I understand it, you can use two > alternative APIs, MCJIT and Orc. The latter offers lazy compilation. Would > it be accurate to say that if you want eager compilation - always compile > an entire module upfront - you should use MCJIT? +lang. My understanding is that Orc is strictly more flexible than MCJIT. You can, in fact, exactly implement the MCJIT API using the Orc APIs. I think the general advice is that MCJIT's a bit more mature and stable, but you probably want Orc in new code unless you re...
2016 Mar 22
6
Need help with code generation
...ollowed? A policy saying llvm should not crash on any input is as relevant as one that says that clang should keep bootstrapping in under one second. So, if we stick to reality, what we have is that lld (ELF and COFF) are already the most reliable parts of the toolchain. If not for Rui and I being upfront about it most people would not even know that you could crash it. So please, just let us keep working on the most reliable part of the toolchain. Cheers, Rafael
2009 May 07
2
[PATCH] msi-x: let drivers retry when not enough vectors
...to regular interrupts. It's better to return the table size, making the driver retry MSI-X with less vectors. Signed-off-by: Michael S. Tsirkin <mst at redhat.com> --- Hi Jesse, This came up when I was adding MSI-X support to virtio pci driver, which does not know the exact table size upfront. Could you consider this patch for 2.6.31 please? drivers/pci/msi.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/pci/msi.c b/drivers/pci/msi.c index 6f2e629..f5bd1c9 100644 --- a/drivers/pci/msi.c +++ b/drivers/pci/msi.c @@ -687,8 +687,8 @@ int pci_msix_t...
2009 May 07
2
[PATCH] msi-x: let drivers retry when not enough vectors
...to regular interrupts. It's better to return the table size, making the driver retry MSI-X with less vectors. Signed-off-by: Michael S. Tsirkin <mst at redhat.com> --- Hi Jesse, This came up when I was adding MSI-X support to virtio pci driver, which does not know the exact table size upfront. Could you consider this patch for 2.6.31 please? drivers/pci/msi.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/pci/msi.c b/drivers/pci/msi.c index 6f2e629..f5bd1c9 100644 --- a/drivers/pci/msi.c +++ b/drivers/pci/msi.c @@ -687,8 +687,8 @@ int pci_msix_t...
2008 May 23
2
Fit a sine to data
...ssibilities should I use instead of lm? I looked searched the R-seek for terms: fit, sine, lm, and combinations, but I could not find anything useful. Anybody would be so kind and point me to the right direction where I can find other fitting possibilities? Thank you for listening and kind answers upfront. Regards, Milan [[alternative HTML version deleted]]
2016 Jan 22
3
LLVM - getAnalysisUsage()
...(); >> } >> >> Now, if I call getAnalysis<X>(*F), instead of invoking just the X >> pass, all the passes, i.e., X, Y and Z are being invoked. Could anyone >> help me in this regard? > > This is expected. With the current pass manager, the scheduling is done upfront. The “addRequired” directive tells the pass manager that before even starting to run your pass, it needs to schedule X, Y, and Z. > They will run even without the call to getAnalysis<X>(*F). The new pass manager (not complete yet but almost) will change that. > > When running your p...
2016 May 11
2
Orc/MCJIT: Relocations vs pointers to functions
...k functions as pointers to functions to a jitted function. The generated code should use pointer to functions instead of predefined function names in calls. 3. Create you own Memory Manager that will provide addresses to callback functions. Because the set of callback functions is known upfront and quite small that seems to be better than 1. Can you help me to evaluate the solutions? - Paweł -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160511/6b819ae4/attachment.html>
2008 Nov 24
4
EPT walks for guest page table
Hi, I am really confused about NPT walks for guest page table , and eager to know the details about it. It is treated as data writes even if the access itself is a code read in AMD NPT.I just want to know : is it the same in EPT? Could anyone help me? I would like to know that very much Thank you in advance Bo Ma _______________________________________________ Xen-devel mailing list
2008 Jan 10
10
ZFS versus VxFS as file system inside Netbackup 6.0 DSSU
Hello experts, We have a large implementation of Symantec Netbackup 6.0 with disk staging. Today, the customer is using VxFS as file system inside Netbackup 6.0 DSSU (disk staging). The customer would like to know if it is best to use ZFS or VxFS as file system inside Netbackup disk staging in order to get the best performance possible. Could you provide some information regarding this
2006 Mar 08
1
fastcgi
...to get information on how to get Rails working under Apache+fastcgi. All I found was people saying that they can''t make it work or some obscure instructions on how to compile this and that. Does anything stable similar to XAMPP exists for Ruby on Rails? If not, people should be warned upfront that they won''t be able to use Ruby on Rail in production unless they have resources to commit for lab research, etc... -- Posted via http://www.ruby-forum.com/.
2011 Feb 10
1
Modifying a package name / Build from sources (rpart)
Dear List Members Upfront: I am not sure if this is the right place to ask this question even after reading through the FAQ, so apologies if I should have directed the question elsewhere. My problem as follows: I need a modified version of some existing R package. I am well able to make the modifications in the C code of t...
2011 May 23
1
How is the relation between Frequency and Counts in hist/density defined?
Hi all, I'm looking to add a "density" smoother on top of a hist when Freq=T. In order to do this I can use the relation between count and density, but I would like to know if there is a way for me to predict it upfront. Here is an example: set.seed(242) z = rnorm(30) hist_z <- hist(z) hist_z$counts / hist_z$density # the relation is 15 # why is this 15 ?? # So I can now do: hist(z) y <- density(z)$y * max(hist_z$counts / hist_z$density, na.rm = T) # this is what I hope to find without using hist, and onl...