Displaying 20 results from an estimated 23 matches for "simmering".
2018 Aug 09
2
SIGSEGV in R_RunWeakRefFinalizer, object allocated with Rcpp
Thanks, Tomas, Luke, for the clarifications. Then, I have another question.
But first, let me introduce how I ended up here, because obviously I
just don't go around dyn.unloading things that I've just compiled. I
was testing a package with valgrind. Everything ok, no leaks. Great.
But I'm always suspicious (probably unjustifiably) of all the memory
that is reported as "still
2018 Aug 10
0
SIGSEGV in R_RunWeakRefFinalizer, object allocated with Rcpp
Hi I?aki,
I think that "still reachable" memory is potentially a problem only if
you cared about (frequent) package unloading, and if package unloading
did not have correctness problems in the first place. I would only worry
about "memory leaks" reported by valgrind.
That your example (unloading a library while there is still an object
with a finalizer implemented in that
2019 Jun 18
1
making a vignette optional
I had added a vignette to the coxme package and all worked well locally, but it failed at
CRAN.???? The issue is that the vignette involves using coxme for pedigree data, it
doesn't work without the kinship2 package, and I hadn't put in the necessary "if
(require(...." logic.
The question is, how do I make the entire vignette conditional? If the package isn't
available,
2018 Aug 09
4
SIGSEGV in R_RunWeakRefFinalizer, object allocated with Rcpp
On 9 August 2018 at 20:37, Tomas Kalibera wrote:
| So to answer your original question, this could probably be handled in
| Rcpp,
Hm. Why do you say that / what did you have in mind?
Recall that we do not alter SEXPs or introduce additional additional
reference counters -- because we do not think that altering the basic R API
for such calls would be a wise strategy. So we do more or less what
2017 Dec 28
0
Help with dates
Your dates have an incomplete year information with 34. R assumes that 00-68 are 2000 to 2068 and 69 to 99 are 1969 to 1999. See ?strptime and the details for %y.
You can either append ?19? to the start of your year variable to make it completely express the year or check if the date is in the future (assuming all dates should be in the past) and subtract 100 years from the date.
> On Dec
2017 Dec 28
3
Help with dates
Hi all,
I?m struggling to get the dates in proper format.
I have dates as factors and is in the form 02/27/34( 34 means 1934). If I use
as.Date with format %d%m%y it gets converted to 2034-02-27. I tried changing the origin in the as.Date command but nothing worked. Any help is appreciated.
Thanks,
Ramesh
2015 Oct 22
2
Moderators needed for LLVM Developers' Meeting
All,
I'm needing volunteers to help moderate the sessions of the LLVM Developers' Meeting. All you need to do is introduce the speaker, make sure the speaker stays on time, and run Q&A at the end (run a microphone, select people, etc). Its a pretty easy job, but critical for our meeting to run smoothly.
If you are interested in moderating, please send me your top 2 session choices.
2015 Sep 09
2
LLVM as a back end for HHVM
On 9/8/15 9:35 AM, Philip Reames wrote:
> On the VM state synching side of things, I'm curious about the tradeoffs
> involved in the approach you've used. I'm guessing from what you said
> that you're essentially pre-reserving a set of allocas for the spill
> locations, somehow registering those with your runtime once, then
> emitting stores down the unlikely path
2019 May 29
3
Making a package CITATION file from BibTeX
Dear Colleagues,
I would like to provide a CITATION file for my package nat.nblast [1].
I have the correct citation in BibTeX format [2]. How can I convert this
BibTeX to the format needed by R for a package CITATION file (I have a
lot of other packages needing citations ...).
I think what I need is the opposite of RefManageR::toBiblatex [3]. This
seems like it should be a common need, so I
2014 Nov 19
5
[LLVMdev] Odd code layout requirements for MCJIT
I'm part of a team working on adding an llvm codegen backend to HHVM
(PHP JIT, http://hhvm.com) using MCJIT. We have a code layout problem
and I'm looking for opinions on good ways to solve it.
The short version is that the memory we emit code into is split into a
few different areas, and we'd like a way to control which area each
BasicBlock ends up in during codegen. I know this
2015 Sep 04
3
LLVM as a back end for HHVM
On 9/4/15 1:12 AM, Sanjoy Das via llvm-dev wrote:
> Specifically on "Location records" --
>
> Is it legal for the optimizer to drop the `!locrec` metadata that you
> attach to instructions? The general convention in LLVM is that
> dropping metadata should not affect correctness, and if the location
> record information is not best-effort or optional then metadata is
2017 Oct 11
2
Flame war police
On 10/10/2017 11:22 AM, Mark Haney wrote:
>
> We have this discussion on every list I've ever been, or currently are
> on about every 6 months or so.? I do my best to contribute to the list
> as often as I can, but I can't help people when they are deadset on
> doing dangerous things.? Posts like his, and posts like yours make it
> harder for me to bother trying to
2017 Oct 11
0
Flame war police
...n directory persistence is, to my mind at
> least, its own brand of immaturity and will typically cause the person
> so being attacked to go on the defensive and harden their stance, and
> this is the textbook genesis of a flame.
I do agree, to a point.? Being Irish, my temper is always simmering,
usually over ignorance or willful stupidity.? But, sometimes you just
have to be the bad guy when people are recalcitrant.? Hence my stance in
this thread.? I honestly have no problem being the bad guy if I have to
be.? In this case, it was a situation where OP was already on the
defensive af...
2020 Jun 26
2
R 4.0.0 rebuild status
On Friday, 26 June 2020 10.47.13 WEST I?aki Ucar wrote:
> I used bcond locally and wrongly assumed that fedpkg build would
> support --with BCOND and --without BCOND. Instead, the way to activate
> it is to change to "%bcond_with check" and then revert to
> "%bcond_without check". The only difference with bootstrap is that
> "bootstrap" is recognized
2013 Nov 25
2
[LLVMdev] "Mapping High-Level Constructs to LLVM IR"
Hi David,
I'm glad you like the idea :-)
I've been busy and so far only lack about three or four things in the C++
area of features: Proper exception handling (which I need to understand
myself first), closures (which I don't think I've ever used), and
generators (which I always wondered how they were implemented). I think
you are absolutely right - some day, this document will
2019 Oct 06
1
should base R have a piping operator ?
I'm largely with Gabriel Becker on this one: if pipes enter base R, they
should be a well thought out and integrated part of the language.
I do see merit though in providing a pipe in base R. Reason is mainly that
right now there's not a single pipe. A pipe function exists in different
packages, and it's not impossible that at one point piping operators might
behave slightly different
2015 Sep 08
2
LLVM as a back end for HHVM
On 9/8/15, 9:35 AM, "Philip Reames" <listmail at philipreames.com> wrote:
>On 09/04/2015 11:36 AM, Brett Simmers via llvm-dev wrote:
>> On 9/4/15 1:12 AM, Sanjoy Das via llvm-dev wrote:
>>> Specifically on "Location records" --
>>>
>>> Is it legal for the optimizer to drop the `!locrec` metadata that you
>>> attach to
2003 Aug 02
0
Re: how l (PR#3614)
--FE8A9_158F__B2CBD0A46E.
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable
<html>
<head>
<title>Home Page</title>
</head>
<body>
Howdy R-bugs
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif" size=3D"3"
color=3D=
2019 Jul 04
2
Fwd: Fedora 31 System-Wide change proposal: Automatic R runtime dependencies
FYI, I plan on implementing this for F31 if no issues arise.
---------- Forwarded message ---------
From: Ben Cotton <bcotton at redhat.com>
Date: Tue, 2 Jul 2019 at 10:55
Subject: Fedora 31 System-Wide change proposal: Automatic R runtime dependencies
To: <devel-announce at lists.fedoraproject.org>, Development discussions
related to Fedora <devel at lists.fedoraproject.org>
2013 Nov 25
0
[LLVMdev] "Mapping High-Level Constructs to LLVM IR"
Hi, documentation is always good and this is a great idea. It'll be
particularly useful as a place where additional examples of constructs from
non-C-family languages could be added (since most compiler tutorials
inevitably focus on languages that are a lot like C/C++/Obj-C).
I'd imagine you've already thought of this, but it might be something where
using pseudo-LLVM-IR is of the