Re: [Rd] R 4.0.1-4.0.2 built with Intel Composer 19.0-19.1.1, error in "make check" on CentOS 7.7

2020-06-24 Thread Duncan Murdoch
If you just run the failed test, does it segfault? What I get when I run it is > bar <- function() 1+1 > foo <- function() { on.exit(bar()); foo() } > tryCatch(foo(), error=function(x) TRUE) # now simple "infinite recursion" [1] TRUE Clearly a segfault on an infinite recursion is undesirable,

[Rd] R 4.0.1-4.0.2 built with Intel Composer 19.0-19.1.1, error in "make check" on CentOS 7.7

2020-06-24 Thread Ryan Novosielski
Hi there, I initially asked about this on r-help and was told this might be a better venue. I’m not really convinced from reading the posting guide, but I’ll give it a shot. It was also suggested that the R-Project doesn’t really care about building with “non-standard” compilers, but I can’t fi

Re: [Rd] subset data.frame at C level

2020-06-24 Thread Morgan Morgan
Thank you Jim for the feedback. I actually implemented it the way I describe it in my first email and it seems fast enough for me. Just to give a bit of context I will need it at some point in package kit. I also implemented subset by row which I actually need more as I am working on a faster ver