search for: distanz

Displaying 20 results from an estimated 22 matches for "distanz".

Did you mean: distant
2016 Nov 11
2
[PATCH] vhost/vsock: Remove unused but set variable
Remove the unused but set variable vq in vhost_transport_send_pkt() to fix the following GCC warning when building with 'W=1': drivers/vhost/vsock.c:198:26: warning: variable ?vq? set but not used Signed-off-by: Tobias Klauser <tklauser at distanz.ch> --- drivers/vhost/vsock.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/vhost/vsock.c b/drivers/vhost/vsock.c index e3b30ea9ece5..9c3c68b9a49e 100644 --- a/drivers/vhost/vsock.c +++ b/drivers/vhost/vsock.c @@ -195,7 +195,6 @@ static int vhost_transport_send_pkt(struct virti...
2016 Nov 11
2
[PATCH] vhost/vsock: Remove unused but set variable
Remove the unused but set variable vq in vhost_transport_send_pkt() to fix the following GCC warning when building with 'W=1': drivers/vhost/vsock.c:198:26: warning: variable ?vq? set but not used Signed-off-by: Tobias Klauser <tklauser at distanz.ch> --- drivers/vhost/vsock.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/vhost/vsock.c b/drivers/vhost/vsock.c index e3b30ea9ece5..9c3c68b9a49e 100644 --- a/drivers/vhost/vsock.c +++ b/drivers/vhost/vsock.c @@ -195,7 +195,6 @@ static int vhost_transport_send_pkt(struct virti...
2011 Oct 21
2
Change column/row-name
...tters (Iske.char<-apply(Iske, 1, function(x) rawToChar(as.raw(x)))) #Numbers to Char LD <- function(s1, s2){ require(vwr) s1 = as.character(s1) s2 = as.character(s2) t(sapply(s1, levenshtein.distance, s2)) } Iske.levens<-(LD(Iske.char,Iske.char)) #Calculate the Levenshtein-Distanz The result: !"#$% !"#$% !"#$% "!#$% .... !"#$% 0 0 0 !"#$% 0 0 0 !"#$% 0 0 0 . . . It is all beautiful. But is there a simple way to change the column/row-name to the original from the Matrix Iske? Thanks a lot for the help ye...
2019 Jan 25
0
[klibc:update-dash] jobs: Don't attempt to access job table for job %0
Commit-ID: 5f90510fbb7e11f5d4fccb6178a2f6e684b7ce64 Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=5f90510fbb7e11f5d4fccb6178a2f6e684b7ce64 Author: Tobias Klauser <tklauser at distanz.ch> AuthorDate: Thu, 10 Dec 2015 08:59:34 +0100 Committer: Ben Hutchings <ben at decadent.org.uk> CommitDate: Fri, 25 Jan 2019 02:57:21 +0000 [klibc] jobs: Don't attempt to access job table for job %0 If job %0 is (mistakenly) specified, an out-of-bounds access to the jobtab occurs...
2020 Mar 28
0
[klibc:update-dash] dash: jobs: Don't attempt to access job table for job %0
Commit-ID: 4e8511b9af7387ed958094485407e636cd06dcc8 Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=4e8511b9af7387ed958094485407e636cd06dcc8 Author: Tobias Klauser <tklauser at distanz.ch> AuthorDate: Thu, 10 Dec 2015 08:59:34 +0100 Committer: Ben Hutchings <ben at decadent.org.uk> CommitDate: Sat, 28 Mar 2020 21:42:54 +0000 [klibc] dash: jobs: Don't attempt to access job table for job %0 [ dash commit 16cde63e05519c770daa69345b8cf37fb31eaa2a ] If job %0 is (mist...
2016 Nov 11
1
[PATCH] vhost/scsi: Remove unused but set variable
Remove the unused but set variable se_tpg in vhost_scsi_nexus_cb() to fix the following GCC warning when building with 'W=1': drivers/vhost/scsi.c:1752:26: warning: variable ?se_tpg? set but not used Signed-off-by: Tobias Klauser <tklauser at distanz.ch> --- drivers/vhost/scsi.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/vhost/scsi.c b/drivers/vhost/scsi.c index 6e29d053843d..e2be447752c2 100644 --- a/drivers/vhost/scsi.c +++ b/drivers/vhost/scsi.c @@ -1749,7 +1749,6 @@ static int vhost_scsi_nexus_cb(struct se_portal_group...
2016 Nov 11
1
[PATCH] vhost/scsi: Remove unused but set variable
Remove the unused but set variable se_tpg in vhost_scsi_nexus_cb() to fix the following GCC warning when building with 'W=1': drivers/vhost/scsi.c:1752:26: warning: variable ?se_tpg? set but not used Signed-off-by: Tobias Klauser <tklauser at distanz.ch> --- drivers/vhost/scsi.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/vhost/scsi.c b/drivers/vhost/scsi.c index 6e29d053843d..e2be447752c2 100644 --- a/drivers/vhost/scsi.c +++ b/drivers/vhost/scsi.c @@ -1749,7 +1749,6 @@ static int vhost_scsi_nexus_cb(struct se_portal_group...
2004 Oct 15
1
cluster analysis
.... I'm performing cluster analysis by using hclust in stats package. My data are contained in a data frame with 10 columns, named "drops". Firs I create a distance matrix using dist: distanxe <- dist(drops) Then I perform cluster analysis via hclust: clusters <- hclust(distanze) At this point I want to view the tree plot, and use plot: plot(clusters) Then, once decided which clusters to select, I start identify: classi <- identify(clusters) and click on all clusters to be selected; I then finish by right-clicking. My understanding is that "classi"...
2008 Jan 14
10
Using EventMachine to listen from non-network
I''ve actually found a way to make EventMachine listen to events from a serial port, but only by using the pure Ruby version, using Guilliame Pierronnet''s Ruby/SerialPort library. It turned out to be simpler than I thought it would be: require ''serialport'' $eventmachine_library = :pure_ruby require ''eventmachine'' module EventMachine class
2002 Jan 25
1
Fw: Summary for Distance matrix by cosine?
...wever, as far as I know the cosine is not the same as the Pearson correlation (only in special cases). b. Reid Huntsinger's hint was very useful, however I had to transpose the matrix first, for I want to calculate the distance of the _rows_. Regards, Petra Steiner #Funktion: Berechnung der Distanzmatrix mit dem Kosinus als Abstandsmass library(Matrix) normalize <- function(ma) { # zunaechst werden die Zeilen der Matrix normalisiert nreihe <- nrow(ma) nspalte <- ncol(ma) print(nspalte) c <- matrix(NA, nreihe, nspalte) row.names(c) <- row.names(ma) colnames(...
2017 Nov 13
1
[PATCH RFC v3 3/6] sched/idle: Add a generic poll before enter real idle path
...tra <peterz at infradead.org> Cc: Borislav Petkov <bp at alien8.de> Cc: Kyle Huey <me at kylehuey.com> Cc: Len Brown <len.brown at intel.com> Cc: Andy Lutomirski <luto at kernel.org> Cc: Tom Lendacky <thomas.lendacky at amd.com> Cc: Tobias Klauser <tklauser at distanz.ch> Cc: linux-kernel at vger.kernel.org --- arch/x86/kernel/process.c | 7 +++++++ kernel/sched/idle.c | 2 ++ 2 files changed, 9 insertions(+), 0 deletions(-) diff --git a/arch/x86/kernel/process.c b/arch/x86/kernel/process.c index c676853..f7db8b5 100644 --- a/arch/x86/kernel/pro...
2017 Nov 13
7
[PATCH RFC v3 0/6] x86/idle: add halt poll support
From: Yang Zhang <yang.zhang.wz at gmail.com> Some latency-intensive workload have seen obviously performance drop when running inside VM. The main reason is that the overhead is amplified when running inside VM. The most cost I have seen is inside idle path. This patch introduces a new mechanism to poll for a while before entering idle state. If schedule is needed during poll, then we
2017 Nov 13
7
[PATCH RFC v3 0/6] x86/idle: add halt poll support
From: Yang Zhang <yang.zhang.wz at gmail.com> Some latency-intensive workload have seen obviously performance drop when running inside VM. The main reason is that the overhead is amplified when running inside VM. The most cost I have seen is inside idle path. This patch introduces a new mechanism to poll for a while before entering idle state. If schedule is needed during poll, then we
2013 Mar 18
0
[linux-linus test] 17325: regressions - trouble: broken/fail/pass
...abi.org> Tina.Yang <tina.yang@oracle.com> Tino Reichardt <list-jfs@mcmilk.de> Tino Reichardt <milky-kernel@mcmilk.de> Tkhai Kirill <tkhai@yandex.ru> Tobias Geiger <tobias.geiger@vido.info> Tobias Klauser <klto@zhaw.ch> Tobias Klauser <tklauser@distanz.ch> Tobias Lorenz <tobias.lorenz@gmx.net> Tobita Tatsunosuke <tobita.tatsunosuke@wacom.co.jp> Todd Poynor <toddpoynor@google.com> Todor Colov <todorcolov@gmail.com> Tom Goff <thomas.goff@boeing.com> Tom Gundersen <teg@jklm.no> Tom Harwood <tom...
2013 Mar 29
0
[linux-linus test] 17454: regressions - FAIL
...abi.org> Tina.Yang <tina.yang@oracle.com> Tino Reichardt <list-jfs@mcmilk.de> Tino Reichardt <milky-kernel@mcmilk.de> Tkhai Kirill <tkhai@yandex.ru> Tobias Geiger <tobias.geiger@vido.info> Tobias Klauser <klto@zhaw.ch> Tobias Klauser <tklauser@distanz.ch> Tobias Lorenz <tobias.lorenz@gmx.net> Tobita Tatsunosuke <tobita.tatsunosuke@wacom.co.jp> Todd Poynor <toddpoynor@google.com> Todor Colov <todorcolov@gmail.com> Tom Goff <thomas.goff@boeing.com> Tom Gundersen <teg@jklm.no> Tom Harwood <tom...
2013 Apr 10
0
[linux-linus test] 17612: regressions - FAIL
...abi.org> Tina.Yang <tina.yang@oracle.com> Tino Reichardt <list-jfs@mcmilk.de> Tino Reichardt <milky-kernel@mcmilk.de> Tkhai Kirill <tkhai@yandex.ru> Tobias Geiger <tobias.geiger@vido.info> Tobias Klauser <klto@zhaw.ch> Tobias Klauser <tklauser@distanz.ch> Tobias Lorenz <tobias.lorenz@gmx.net> Tobita Tatsunosuke <tobita.tatsunosuke@wacom.co.jp> Todd Poynor <toddpoynor@google.com> Todor Colov <todorcolov@gmail.com> Tom Goff <thomas.goff@boeing.com> Tom Gundersen <teg@jklm.no> Tom Harwood <tom...
2013 May 05
0
[linux-linus test] 17901: regressions - FAIL
...abi.org> Tina.Yang <tina.yang@oracle.com> Tino Reichardt <list-jfs@mcmilk.de> Tino Reichardt <milky-kernel@mcmilk.de> Tkhai Kirill <tkhai@yandex.ru> Tobias Geiger <tobias.geiger@vido.info> Tobias Klauser <klto@zhaw.ch> Tobias Klauser <tklauser@distanz.ch> Tobias Lorenz <tobias.lorenz@gmx.net> Tobita Tatsunosuke <tobita.tatsunosuke@wacom.co.jp> Todd Poynor <toddpoynor@google.com> Todor Colov <todorcolov@gmail.com> Tom Goff <thomas.goff@boeing.com> Tom Gundersen <teg@jklm.no> Tom Harwood <tom...
2013 May 07
0
[linux-linus test] 17916: regressions - FAIL
...abi.org> Tina.Yang <tina.yang@oracle.com> Tino Reichardt <list-jfs@mcmilk.de> Tino Reichardt <milky-kernel@mcmilk.de> Tkhai Kirill <tkhai@yandex.ru> Tobias Geiger <tobias.geiger@vido.info> Tobias Klauser <klto@zhaw.ch> Tobias Klauser <tklauser@distanz.ch> Tobias Lorenz <tobias.lorenz@gmx.net> Tobita Tatsunosuke <tobita.tatsunosuke@wacom.co.jp> Todd Poynor <toddpoynor@google.com> Todor Colov <todorcolov@gmail.com> Tom Goff <thomas.goff@boeing.com> Tom Gundersen <teg@jklm.no> Tom Harwood <tom...
2013 Jun 16
0
[linux-linus test] 18150: regressions - FAIL
...de> Tino Reichardt <milky-kernel@mcmilk.de> Tirupathi Reddy <tirupath@codeaurora.org> Tkhai Kirill <tkhai@yandex.ru> Toan Pham <tpham3783@gmail.com> Tobias Geiger <tobias.geiger@vido.info> Tobias Klauser <klto@zhaw.ch> Tobias Klauser <tklauser@distanz.ch> Tobias Lorenz <tobias.lorenz@gmx.net> Tobita Tatsunosuke <tobita.tatsunosuke@wacom.co.jp> Todd Poynor <toddpoynor@google.com> Todor Colov <todorcolov@gmail.com> Tom Goff <thomas.goff@boeing.com> Tom Gundersen <teg@jklm.no> Tom Harwood <tom...
2013 Jun 23
0
[linux-linus test] 18181: regressions - trouble: broken/fail/pass
...de> Tino Reichardt <milky-kernel@mcmilk.de> Tirupathi Reddy <tirupath@codeaurora.org> Tkhai Kirill <tkhai@yandex.ru> Toan Pham <tpham3783@gmail.com> Tobias Geiger <tobias.geiger@vido.info> Tobias Klauser <klto@zhaw.ch> Tobias Klauser <tklauser@distanz.ch> Tobias Lorenz <tobias.lorenz@gmx.net> Tobita Tatsunosuke <tobita.tatsunosuke@wacom.co.jp> Todd Poynor <toddpoynor@google.com> Todor Colov <todorcolov@gmail.com> Tom Goff <thomas.goff@boeing.com> Tom Gundersen <teg@jklm.no> Tom Harwood <tom...