search for: tv2

Displaying 17 results from an estimated 17 matches for "tv2".

Did you mean: tv
2019 Sep 28
0
[PATCH nbdkit v2 1/4] common/include: Add function for subtracting struct timeval.
...c +++ b/common/include/test-tvdiff.c @@ -36,7 +36,6 @@ #include <stdlib.h> #include <stdint.h> #include <inttypes.h> -#include <assert.h> #include <sys/time.h> #include "tvdiff.h" @@ -45,37 +44,87 @@ * implementation. */ +#define TEST_TVDIFF(tv1, tv2, expected) \ + do { \ + int64_t actual = tvdiff_usec (&(tv1), &(tv2)); \ + \ + if (actual != (e...
2019 Sep 28
2
[PATCH nbdkit 1/2] common/include: Add function for subtracting struct timeval.
...c +++ b/common/include/test-tvdiff.c @@ -36,7 +36,6 @@ #include <stdlib.h> #include <stdint.h> #include <inttypes.h> -#include <assert.h> #include <sys/time.h> #include "tvdiff.h" @@ -45,37 +44,87 @@ * implementation. */ +#define TEST_TVDIFF(tv1, tv2, expected) \ + do { \ + int64_t actual = tvdiff_usec (&(tv1), &(tv2)); \ + \ + if (actual != (e...
2019 Sep 28
9
[PATCH nbdkit v2 0/4] info: Add mode for sending back server time.
v1 was: https://www.redhat.com/archives/libguestfs/2019-September/thread.html#00361 v2: - Adds a patch to rename the reflection plugin to the info plugin. - Adds tests. Rich.
2013 May 02
2
[LLVMdev] Handling Masked Vector Operations
Nadav Rotem <nrotem at apple.com> writes: > For DIV/MOD you can blend the inputs BEFORE the operation. You can > place ones or zeros depending on the operation. Quick follow-up on this. What about using "undef" as the input for false items: tv1 = select mask, v1, undef tv2 = select mask, v2, undef tv3 = div tv1, tv2 v3 = select mask, tv3, undef I'm always confused about the semantics of undef. Is the above safe code? It would simplify things a bit not to have to track which input values are safe based on the context of an operation....
2013 May 02
0
[LLVMdev] Handling Masked Vector Operations
> >> For DIV/MOD you can blend the inputs BEFORE the operation. You can >> place ones or zeros depending on the operation. > > Quick follow-up on this. What about using "undef" as the input for > false items: > > tv1 = select mask, v1, undef > tv2 = select mask, v2, undef > tv3 = div tv1, tv2 > v3 = select mask, tv3, undef > > I'm always confused about the semantics of undef. Is the above safe > code? It would simplify things a bit not to have to track which input > values are safe based on the context of an operatio...
2006 Apr 20
0
Tvs Plasma notebboks E-gold apy
...c 37" Plasma TV Display TH-37PWD8UK" style="border: 0px solid ; width: 100px; height: 85px;"></a>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;<a href="http://www.importbrasil.net/detalhe/tv2.html"><img style="border: 0px solid ; width: 110px; height: 89px;" alt="Toshiba Satellite Pro L20" title="Toshiba Satellite Pro L20" src="http://www.laptopsdirect.co.uk/images_versions/6143.jpg"></a> &nbsp; &nbsp; &nbsp; &a...
2013 May 02
4
[LLVMdev] Handling Masked Vector Operations
...you can blend the inputs BEFORE the operation. You > can > place ones or zeros depending on the operation. > > Quick follow-up on this. What about using "undef" as the input for > false items: > > tv1 = select mask, v1, undef > tv2 = select mask, v2, undef > tv3 = div tv1, tv2 > v3 = select mask, tv3, undef > > I'm always confused about the semantics of undef. Is the above > safe > code? It would simplify things a bit not to have to track which > input > values are...
2002 Apr 08
4
pooling categories in a table
I have a large n-way contingency table, constructed as a table object, and want to pool (collapse) some categories, summing the frequencies in all collapsed cells. How can I do this? thx, -Michael -- Michael Friendly friendly at yorku.ca York University http://www.math.yorku.ca/SCS/friendly.html Psychology Department 4700 Keele Street Tel: (416) 736-5115
2010 Oct 22
8
Wine with Ati 3d Card
Hi I have a Radeon Ati 3d graphics external card in my machine. I have about 512 mb vram and 4 gb ram and intel core duo 2.4 ghz I have never experienced any problems with my graphics card untill i used it with wine on ubuntu. Suddenly I could not play the games I used to play in windows xp. I tested doom 95 and halo evolved and they both could not run and stuttered. I have no problems
2013 May 02
0
[LLVMdev] Handling Masked Vector Operations
...e operation. You > > can > > place ones or zeros depending on the operation. > > > > Quick follow-up on this. What about using "undef" as the input for > > false items: > > > > tv1 = select mask, v1, undef > > tv2 = select mask, v2, undef > > tv3 = div tv1, tv2 > > v3 = select mask, tv3, undef > > > > I'm always confused about the semantics of undef. Is the above > > safe > > code? It would simplify things a bit not to have to track which > >...
2013 May 02
0
[LLVMdev] Handling Masked Vector Operations
Hi David, > > It seems the only solution is to create an intrinsic: > > llvm_int_load_masked mask, [addr] > > But this unnecessarily shuts down optimization. > I think that using intrinsics is the right solution. I imagine that most interesting load/store optimizations happen before vectorization, so I am not sure how much we can gain by optimizing masked load/stores.
2006 May 26
8
Comparing two documents in the index
I want to compare two documents in the index (i.e. retrieve the cosine similarity/score between two documents term-vector''s). Is this possible using the standard Ferret functionality? Thanks in advance, Jeroen Bulters -- Posted via http://www.ruby-forum.com/.
2020 Oct 17
0
[PATCH nbdkit] common/include/tvdiff.h: Add formal specification.
...-then -report-classify -report-status -report-unclassified-unknown ERROR diff --git a/common/include/test-tvdiff.c b/common/include/test-tvdiff.c index abefb2e7..1bf6523b 100644 --- a/common/include/test-tvdiff.c +++ b/common/include/test-tvdiff.c @@ -46,7 +46,9 @@ #define TEST_TVDIFF(tv1, tv2, expected) \ do { \ - int64_t actual = tvdiff_usec (&(tv1), &(tv2)); \ + int64_t actual; \ +...
2021 Jan 04
4
Dovecot v2.3.13 released
We are pleased to release v2.3.13. Please find it from locations below: https://dovecot.org/releases/2.3/dovecot-2.3.13.tar.gz https://dovecot.org/releases/2.3/dovecot-2.3.13.tar.gz.sig Binary packages in https://repo.dovecot.org/ Docker images in https://hub.docker.com/r/dovecot/dovecot Aki Tuomi Open-Xchange oy --- * CVE-2020-24386: Specially crafted command can cause IMAP hibernate to
2021 Jan 04
4
Dovecot v2.3.13 released
We are pleased to release v2.3.13. Please find it from locations below: https://dovecot.org/releases/2.3/dovecot-2.3.13.tar.gz https://dovecot.org/releases/2.3/dovecot-2.3.13.tar.gz.sig Binary packages in https://repo.dovecot.org/ Docker images in https://hub.docker.com/r/dovecot/dovecot Aki Tuomi Open-Xchange oy --- * CVE-2020-24386: Specially crafted command can cause IMAP hibernate to
2013 May 02
8
[LLVMdev] Handling Masked Vector Operations
We're looking at how to handle masked vector operations in architectures like Knight's Corner. In our case, we have to translate from a fully vectorized IR that has mask support to llvm IR which does not have mask support. For non-trapping instructions this is fairly straightforward: ; Input t1 = add t2, t3, mask ; llvm IR -- assuming we want zeros in the false positions, which is not
2012 Nov 26
13
[PATCH 0 of 4] Minios improvements for app development
This patch series contains a set of patches making minios rather easier to use, from an application development point of view. Overview of patches: 1 Command line argument parsing support, from Xen. 2 Weak console handler function. 3 Build system tweaks for application directories. 4 Trailing whitespace cleanup. (because it is very messy) Patch 4 is likely to be more controversial than