Displaying 14 results from an estimated 14 matches for "46340".
Did you mean:
26340
2014 Nov 06
1
limit of cmdscale function
...ale(d, k) : invalid value of 'n'
Calls: isoMDS -> cmdscale
------------------------------------
We checked the source code of "cmdscale" and found the following limitation:
------------------------------------
## we need to handle nxn internally in dblcen
if(is.na(n) || n > 46340) stop("invalid value of 'n'")
------------------------------------
1. This cmdscale limitation ('n > 46340') is due to the limitation of BLAS and LAPACK variables(int4) which can only handle '2^31-1' amount of data?
2. Is there any workaround to run isoMDS usi...
2020 Sep 07
3
[IR] Modelling of GlobalIFunc
I was working on https://reviews.llvm.org/D81911 to try and fix
https://bugs.llvm.org/show_bug.cgi?id=46340 . Through the review
process we happened upon a design limitation or perhaps a potential
mis-modelling of GlobalIFunc in the IR object hierarchy, which leads
to some problems in LTO flows.
To summarize, as it currently stands (and in the hopes of faithfully
representing the conclusions of that dis...
2009 Sep 07
0
performance of vector subscripting via character index
Hi all,
Using character indexing on a vector is quite fast up through vector
length of 46340, then it suddenly it gets 3 orders of magnitude slower.
This is true at least of the special case in which the index vector is
the complete (though possibly out-of-order) set of vector names:
test <- function(n) {
vec <- seq_len(n)
names(vec) <- as.character(vec)
ind <...
2005 Apr 29
0
Anscombe-Glynn, Bonett-Seier, D'Agostino
..., alternative=c("two.sided","less","greater"))
{
DNAME <- deparse(substitute(x))
x <- sort(x[complete.cases(x)])
n <- length(x)
s <- match.arg(alternative)
alter <- switch(s, two.sided=0, less=1, greater=2)
if ((n < 8 || n > 46340))
stop("sample size must be between 8 and 46340")
s3 <- (sum((x-mean(x))^3)/n)/(sum((x-mean(x))^2)/n)^(3/2)
y <- s3*sqrt((n+1)*(n+3)/(6*(n-2)))
b2 <- 3*(n*n+27*n-70)*(n+1)*(n+3)/((n-2)*(n+5)*(n+7)*(n+9))
w <- sqrt(-1+sqrt(2*(b2-1)));
d <- 1/sqrt(log10(w));
a...
2020 Sep 10
2
[IR] Modelling of GlobalIFunc
...ating to IFunc support in llvm (Peter).
>
> Teresa
>
> On Mon, Sep 7, 2020 at 10:07 AM Itay Bookstein via llvm-dev <
> llvm-dev at lists.llvm.org> wrote:
>
>> I was working on https://reviews.llvm.org/D81911 to try and fix
>> https://bugs.llvm.org/show_bug.cgi?id=46340 . Through the review
>> process we happened upon a design limitation or perhaps a potential
>> mis-modelling of GlobalIFunc in the IR object hierarchy, which leads
>> to some problems in LTO flows.
>>
>> To summarize, as it currently stands (and in the hopes of faithfu...
2010 Nov 14
0
[ANNOUNCE] xorg-server 1.9.2.901 (1.9.3 RC1)
...ts (#30267)
Xi: reshuffle conditions for labeling a device as IsXExtensionKeyboard (#29046)
xkb: init mapWidth and symsPerKey arrays to 0.
Samuel Thibault (1):
hurd: Fix use of deprecated iopl device
Siddhesh Poyarekar (1):
mi: Integer overflow for dashed lines longer than 46340. #31093
Tiago Vignatti (1):
dix: advance parent window pointer when no node is found
git tag: xorg-server-1.9.2.901
http://xorg.freedesktop.org/archive/individual/xserver/xorg-server-1.9.2.901.tar.bz2
MD5: aa2b294277d1733d33d30609321c1b15 xorg-server-1.9.2.901.tar.bz2
SHA1: edbf1be314443...
2005 Aug 23
0
NAs by integer overflow in Spearman's test p-value (PR#8087)
Full_Name: Jan T. Kim
Version: 2.1.0 (and better)
OS: Linux
Submission from: (NULL) (139.222.3.229)
The p value in Spearman's test is NA if the length of x exceeds 46340, due to
an integer overflow, occurring if length(n) > sqrt(2^31):
> n <- 46341;
> set.seed(1);
> x <- runif(n);
> y <- runif(n);
> cor.test(x, y, method = "spearman");
Spearman's rank correlation rho
data: x and y...
2017 Sep 27
4
Panic
...e8,
element_size = 8}, v = 0x55bae816d6e8, v_modifiable = 0x55bae816d6e8}, parser = 0x55bae8157aa0, state = CLIENT_COMMAND_STATE_WAIT_INPUT, stats = {start_time = {tv_sec = 1506507612, tv_usec = 777163},
last_run_timeval = {tv_sec = 1506507612, tv_usec = 777163}, start_ioloop_wait_usecs = 46340, running_usecs = 0, lock_wait_usecs = 0, bytes_in = 0, bytes_out = 0}, stats_start = {timeval = {
tv_sec = 1506507612, tv_usec = 777241}, lock_wait_usecs = 0, bytes_in = 91, bytes_out = 852}, sync = 0x0, uid = 1, cancel = 0, param_error = 0, search_save_result = 0, search_save_result_used = 0...
2005 Aug 23
0
(PR#8087) NAs by integer overflow in Spearman's test p-value
...s do definitely make your code harder to read.
On Tue, 23 Aug 2005 jtk at cmp.uea.ac.uk wrote:
> Full_Name: Jan T. Kim
> Version: 2.1.0 (and better)
> OS: Linux
> Submission from: (NULL) (139.222.3.229)
>
>
> The p value in Spearman's test is NA if the length of x exceeds 46340, due to
> an integer overflow, occurring if length(n) > sqrt(2^31):
>
> > n <- 46341;
> > set.seed(1);
> > x <- runif(n);
> > y <- runif(n);
> > cor.test(x, y, method = "spearman");
>
> Spearman's rank cor...
2010 Dec 13
0
[ANNOUNCE] xorg-server 1.9.3
...xfree86: add missing linebreak in error message.
dix: remove now unnecessary !! before BitIsOn()
Samuel Thibault (2):
hurd: Fix use of deprecated iopl device
Do not trap access to timer and keyboard
Siddhesh Poyarekar (1):
mi: Integer overflow for dashed lines longer than 46340. #31093
Tiago Vignatti (1):
dix: advance parent window pointer when no node is found
git tag: xorg-server-1.9.3
http://xorg.freedesktop.org/archive/individual/xserver/xorg-server-1.9.3.tar.bz2
MD5: 5bef6839a76d029204ab31aa2fcb5201 xorg-server-1.9.3.tar.bz2
SHA1: 4f275aa4dc76ca0b727d1b87c...
2017 Sep 27
0
Panic
...element_size = 8}, v = 0x55bae816d6e8, v_modifiable = 0x55bae816d6e8}, parser = 0x55bae8157aa0, state = CLIENT_COMMAND_STATE_WAIT_INPUT, stats = {start_time = {tv_sec = 1506507612, tv_usec = 777163},
> last_run_timeval = {tv_sec = 1506507612, tv_usec = 777163}, start_ioloop_wait_usecs = 46340, running_usecs = 0, lock_wait_usecs = 0, bytes_in = 0, bytes_out = 0}, stats_start = {timeval = {
> tv_sec = 1506507612, tv_usec = 777241}, lock_wait_usecs = 0, bytes_in = 91, bytes_out = 852}, sync = 0x0, uid = 1, cancel = 0, param_error = 0, search_save_result = 0, search_save_result_use...
2017 Sep 27
0
mail-storage.c:2473 assertion failed: (!ctx->unfinished) (related to antispam?)
...element_size = 8}, v = 0x55bae816d6e8, v_modifiable = 0x55bae816d6e8}, parser = 0x55bae8157aa0, state = CLIENT_COMMAND_STATE_WAIT_INPUT, stats = {start_time = {tv_sec = 1506507612, tv_usec = 777163},
> last_run_timeval = {tv_sec = 1506507612, tv_usec = 777163}, start_ioloop_wait_usecs = 46340, running_usecs = 0, lock_wait_usecs = 0, bytes_in = 0, bytes_out = 0}, stats_start = {timeval = {
> tv_sec = 1506507612, tv_usec = 777241}, lock_wait_usecs = 0, bytes_in = 91, bytes_out = 852}, sync = 0x0, uid = 1, cancel = 0, param_error = 0, search_save_result = 0, search_save_result_use...
2017 Sep 27
3
mail-storage.c:2473 assertion failed: (!ctx->unfinished) (related to antispam?)
...element_size = 8}, v = 0x55bae816d6e8, v_modifiable = 0x55bae816d6e8}, parser = 0x55bae8157aa0, state = CLIENT_COMMAND_STATE_WAIT_INPUT, stats = {start_time = {tv_sec = 1506507612, tv_usec = 777163},
>> last_run_timeval = {tv_sec = 1506507612, tv_usec = 777163}, start_ioloop_wait_usecs = 46340, running_usecs = 0, lock_wait_usecs = 0, bytes_in = 0, bytes_out = 0}, stats_start = {timeval = {
>> tv_sec = 1506507612, tv_usec = 777241}, lock_wait_usecs = 0, bytes_in = 91, bytes_out = 852}, sync = 0x0, uid = 1, cancel = 0, param_error = 0, search_save_result = 0, search_save_result...
2010 Dec 07
1
[ANNOUNCE] xorg-server 1.9.99.901
...'t overwrite option list (#32115)
xfree86: use xf86AllocateInput() for xorg.conf devices too.
Samuel Thibault (2):
hurd: Fix use of deprecated iopl device
Do not trap access to timer and keyboard
Siddhesh Poyarekar (1):
mi: Integer overflow for dashed lines longer than 46340. #31093
Simon Thum (2):
xfree86: Fix xf86 backend-specific input initialization
dix: fix up valuators passed to acceleration code.
S?ren Sandmann Pedersen (5):
Delete unused fbWalkCompositeRegion()
render: Delete renderedge.[ch]
fb: Delete fbCompositeGeneral()...