Displaying 20 results from an estimated 124 matches for "amort".
Did you mean:
abort
2012 Jun 15
1
Divide all rows of a data frame by the first row.
Folks,
I call the function calcAmorts like so:
calcAmorts(prevAm, amort, myDates)
Note that I use the package lubridate.
The last line where do.call is called to first divide all the rows by the first row and then rbind gives the following error:
Error in do.call("rbind", apply(amortsByYears, 1, "/", amortsB...
2011 Jan 23
2
putting "/tmp" to memory
...2 GByte filesystem [ tmpfs?, or ramfs? ], and put the "/tmp" on it. [ e.g.: 4 GByte ram in the pc ]. what to write in the "/etc/fstab"?
I would like to collect the [ answers too:P ]:
Advantages:
- Memory is way faster then HDD/SSD, so it could speed things up
- "SSD amortization" is less
Disadvantages:
- Security? [ how to set this up to be secure? any clear howtos/links regarding it? :O ]
Really thank you for any good help...
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.centos.org/pipermail/centos/a...
2007 Aug 30
0
Problem with data migration and acts_as_tree
...RRIENTE
1101,DISPONIBILIDADES
110101,CAJA
11010101,CAJA
11010102,FONDO FIJO
11010103,RECAUDACIONES A DEPOSITAR
110102,BANCOS
11010201,GALICIA CTA CTE
11010202,HSBC CTA CTE
11010203,PATAGONIA CTA CTE
12,ACTIVO NO CORRIENTE
1201,BIENES DE USO
120101,MUEBLES Y ┌TILES
12010101,MUEBLES Y ┌TILES
12010102,AMORT. ACUMULADA M. Y ┌TILES
120102,EQUIPOS Y SISTEMAS
12010201,EQUIPOS Y SISTEMAS
12010202,AMORT. ACUMULADA EQUIPOS Y SISTEMAS
120103,INSTALACIONES
12010301,INSTALACIONES
12010302,AMORT. ACUMULADA INSTALACIONES
2,PASIVO
21,PASIVO CORRIENTE
2101,DEUDAS COMERCIALES
210101,PROVEEDORES
--~--~---------~--~...
2015 May 21
3
[LLVMdev] Alias-based Loop Versioning
...dified to take advantage of the new freedom to due more independence of the memory access operations. AA will capture the noalias annotation of inserted by this pass and present it to the passes.
Memchecks present an overhead at run time so one question is how we ensure that any optimization will amortize the cost of these checks.
Depending on the optimization, answering this could be pretty involved (i.e. almost like running the pass itself). Consider the loop vectorizer. In order to answer whether versioning the loop would make it vectorizable, you’d have to run most of the legality and prof...
2020 Feb 14
3
RFC Storing BB order in llvm::Instruction for faster local dominance
.../D51664
Essentially, every instruction will carry an integer order number, and
inserting new instructions invalidates the ordering. I know there are
better algorithms for maintaining the ordering in the face of random
insertions, but I wanted to focus on the simple case of making dominance
queries amortized O(1) when no insertion is occuring. My personal belief is
that most transforms are 80% analysis, 20% transformation, so most of the
benefits can be delivered with simple heuristics.
MLIR already uses this technique:
https://github.com/llvm/llvm-project/blob/master/mlir/include/mlir/IR/Operatio...
2004 Jun 08
5
fast mkChar
...ecks in reading character fields is the mkChar()
function which on each call incurs a lot of garbage-collection-related
overhead.
I wonder if there is a "vectorized" version of mkChar, say mkChar2(char
**, int length) that converts an array of C strings to a string vector,
which somehow amortizes the gc overhead over the entire array?
If no such function exists, I'd appreciate any hint as to how to write
it.
Thanks,
Vadim
[[alternative HTML version deleted]]
2017 Apr 03
2
[PATCH net-next 3/3] virtio-net: clean tx descriptors from rx napi
On Sun, Apr 2, 2017 at 10:47 PM, Michael S. Tsirkin <mst at redhat.com> wrote:
> On Sun, Apr 02, 2017 at 04:10:12PM -0400, Willem de Bruijn wrote:
>> From: Willem de Bruijn <willemb at google.com>
>>
>> Amortize the cost of virtual interrupts by doing both rx and tx work
>> on reception of a receive interrupt if tx napi is enabled. With
>> VIRTIO_F_EVENT_IDX, this suppresses most explicit tx completion
>> interrupts for bidirectional workloads.
>>
>> Signed-off-by: Willem d...
2017 Apr 03
2
[PATCH net-next 3/3] virtio-net: clean tx descriptors from rx napi
On Sun, Apr 2, 2017 at 10:47 PM, Michael S. Tsirkin <mst at redhat.com> wrote:
> On Sun, Apr 02, 2017 at 04:10:12PM -0400, Willem de Bruijn wrote:
>> From: Willem de Bruijn <willemb at google.com>
>>
>> Amortize the cost of virtual interrupts by doing both rx and tx work
>> on reception of a receive interrupt if tx napi is enabled. With
>> VIRTIO_F_EVENT_IDX, this suppresses most explicit tx completion
>> interrupts for bidirectional workloads.
>>
>> Signed-off-by: Willem d...
2018 Sep 07
1
[PATCH net-next 04/11] tuntap: simplify error handling in tun_build_skb()
...> > return ERR_PTR(-EFAULT);
> > > + get_page(alloc_frag->page);
> > > + alloc_frag->offset += buflen;
> > > +
> > This adds an atomic op on XDP_DROP which is a data path
> > operation for some workloads.
>
> Yes, I have patch on top to amortize this, the idea is to have a very big
> refcount once after the frag was allocated and maintain a bias and decrease
> them all when allocating new frags.'
Why bother with refcounting for a drop though? It should be simple.
--
MST
2006 Mar 02
1
extendable arrays in R
...implementation of c() where everything
passed to c() is copied.
I tried extending the vector by assigning to length(li) instead of
using c(), but that also runs in O(n) (so the loop runs in O(n^2)) and
appears to copy the elements.
What I am looking for is an array that can dynamically resized in
amortized constant or log time (like python's list or C++'s
std::vector). I could build up a data structure inside R (the same way
std::vector is built on top of C arrays), but I was hoping someone
might have some advice on a better way to do this.
Does R have a resizeable array type that I'...
2017 Apr 07
2
[PATCH net-next 3/3] virtio-net: clean tx descriptors from rx napi
...m de Bruijn wrote:
>> On Sun, Apr 2, 2017 at 10:47 PM, Michael S. Tsirkin <mst at redhat.com> wrote:
>> > On Sun, Apr 02, 2017 at 04:10:12PM -0400, Willem de Bruijn wrote:
>> >> From: Willem de Bruijn <willemb at google.com>
>> >>
>> >> Amortize the cost of virtual interrupts by doing both rx and tx work
>> >> on reception of a receive interrupt if tx napi is enabled. With
>> >> VIRTIO_F_EVENT_IDX, this suppresses most explicit tx completion
>> >> interrupts for bidirectional workloads.
>> >&...
2017 Apr 07
2
[PATCH net-next 3/3] virtio-net: clean tx descriptors from rx napi
...m de Bruijn wrote:
>> On Sun, Apr 2, 2017 at 10:47 PM, Michael S. Tsirkin <mst at redhat.com> wrote:
>> > On Sun, Apr 02, 2017 at 04:10:12PM -0400, Willem de Bruijn wrote:
>> >> From: Willem de Bruijn <willemb at google.com>
>> >>
>> >> Amortize the cost of virtual interrupts by doing both rx and tx work
>> >> on reception of a receive interrupt if tx napi is enabled. With
>> >> VIRTIO_F_EVENT_IDX, this suppresses most explicit tx completion
>> >> interrupts for bidirectional workloads.
>> >&...
2015 May 23
2
[LLVMdev] Alias-based Loop Versioning
...re
> independence of the memory access operations. AA will capture the
> noalias annotation of inserted by this pass and present it to the
> passes.
>
>
>
>
>
> Memchecks present an overhead at run time so one question is how we
> ensure that any optimization will amortize the cost of these checks.
>
>
>
>
>
> Depending on the optimization, answering this could be pretty
> involved (i.e. almost like running the pass itself). Consider the
> loop vectorizer. In order to answer whether versioning the loop
> would make it vectorizable,...
2007 Mar 07
4
Time moving backwards error
I'm running dovecot on an OpenBSD 3.7 server and after upgrading to
RC25, the daemon started exiting with:
Fatal: Time just moved backwards (1173221579 -> 1173221578)! This
might cause a lot of problems, so I'll just kill myself now.
After upgrading to RC26, I've gotten the error:
Error: Time just moved backwards by 1 seconds. I'll sleep now until
we're back in
2017 Apr 02
1
[PATCH net-next 3/3] virtio-net: clean tx descriptors from rx napi
From: Willem de Bruijn <willemb at google.com>
Amortize the cost of virtual interrupts by doing both rx and tx work
on reception of a receive interrupt if tx napi is enabled. With
VIRTIO_F_EVENT_IDX, this suppresses most explicit tx completion
interrupts for bidirectional workloads.
Signed-off-by: Willem de Bruijn <willemb at google.com>
---...
2016 Mar 22
3
A couple ideas for possible GSoC projects
...racking.cpp) is
relatively weak and expensive. It could be improved in a number of ways:
1) Review cases where potentially captured is currently returned for
possible false positives. There are a couple of known ones which would
make good introductory patches.
2) The results could be cached to amortize the cost. This will require
careful design to ensure the result is invalidated when appropriate.
3) A more precise analysis could be used to identify object sub-graphs
which do not escape (despite links between them).
This would be a good project for a student interested in compiler
analysis...
2015 May 25
0
[LLVMdev] Alias-based Loop Versioning
...re
> independence of the memory access operations. AA will capture the
> noalias annotation of inserted by this pass and present it to the
> passes.
>
>
>
>
>
> Memchecks present an overhead at run time so one question is how we
> ensure that any optimization will amortize the cost of these checks.
>
>
>
>
>
> Depending on the optimization, answering this could be pretty
> involved (i.e. almost like running the pass itself). Consider the
> loop vectorizer. In order to answer whether versioning the loop
> would make it vectorizable,...
2019 Aug 11
3
[PATCH libnbd proposal] api: Add semi-private function for freeing persistent data.
This adds a C-only semi-private function for freeing various types of
persistent data passed to libnbd.
There are some similarities with nbd_add_close_callback which we
removed in commit 7f191b150b52ed50098976309a6af883d245fc56.
---
generator/generator | 46 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
diff --git a/generator/generator b/generator/generator
2009 Oct 09
2
Rendering farm?
I received at least one email suggesting a Windows-based rendering
farm - likely to consist of a few rack systems all running 64-bit
Windows. I read an article on Tomshardware which gave some decent
insight. What can list participants offer on this concept?
I don't care _how_ the resource is implemented - virtual machine,
cluster, etc. I just want to get the most resources for the money,
2018 Sep 06
2
[PATCH net-next 04/11] tuntap: simplify error handling in tun_build_skb()
On Thu, Sep 06, 2018 at 12:05:19PM +0800, Jason Wang wrote:
> There's no need to duplicate page get logic in each action. So this
> patch tries to get page and calculate the offset before processing XDP
> actions, and undo them when meet errors (we don't care the performance
> on errors). This will be used for factoring out XDP logic.
>
> Signed-off-by: Jason Wang