Displaying 10 results from an estimated 10 matches for "altvec".
Did you mean:
altivec
2018 May 04
2
Debugging "SETLENGTH() cannot be applied to an ALTVEC object."?
...0_20180502_082353/Windows/00check.log>
Status: OK
Debian: <https://win-builder.r-project.org/incoming_pretest/
heatmaply_0.15.0_20180502_082353/Debian/00check.log>
Status: 1 ERROR, 1 WARNING
Looking at the errors I get, they are all of the type:
"SETLENGTH() cannot be applied to an ALTVEC object."
I assume this is somehow related to changes in R 3.5.0 (maybe related to
this
<https://github.com/wch/r-source/commit/0ba66a2bc236ae5b009af910688575aa4adddd2c>?),
but I'm not sure how to debug it (as I don't have this environment set-up),
not am I sure what is actually c...
2019 Aug 23
1
wrap_logical warning message when loading objects created in R 3.6 in an R 3.5 session
Hi,
I am experiencing a warning message when I load a large R object
created in an R 3.6 session in R 3.5.* , as follows:
```
Warning message:
In load(?GDSCv2.RData?) :
cannot unserialize ALTVEC object of class ?wrap_logical? from package
?base?; returning length zero vector
```
Of relevant information may be that the large R object (a data
structure defined in my Bioconductor package PharmacoGx), was in part
created including data frames which were cast from data.tables. I
noticed that th...
2020 Oct 29
2
Something is wrong with the unserialize function
...re info on the problem if you manually build a connection
between two R processes and export the ALTREP object. See output below
```
> con <- socketConnection(port = 1234,server = FALSE)
> gctorture()
> x <- unserialize(con)
Warning message:
In unserialize(con) :
cannot unserialize ALTVEC object of class 'mmap_real' from package
'simplemmap'; returning length zero vector
```
It seems like simplemmap did not get loaded correctly on the worker. If
you run `library( simplemmap)` before unserializing the ALTREP, there will
be no problem. But I suppose we should be able...
2020 Oct 29
2
[External] Something is wrong with the unserialize function
...etween two R processes and export the ALTREP object. See output below
> ```
>> con <- socketConnection(port = 1234,server = FALSE)
>> gctorture()
>> x <- unserialize(con)
> Warning message:
> In unserialize(con) :
> cannot unserialize ALTVEC object of class 'mmap_real' from package
> 'simplemmap'; returning length zero vector
> ```
> It seems like simplemmap did not get loaded correctly on the worker. If
> you run `library( simplemmap)` before unserializing the ALTREP, there will
> be...
2019 Jul 24
1
[External] Re: Any plans for ALTREP lists (VECSXP)?
...gt;
> A reasonable name for the abstract class would be 'altlist'.
>
> 'altrep' methods that a class can provide:
>
> Unserialize or UnserializeEX
> Serialized_state
> Duplicate or DuplicateEx
> Coerce
> Inspect
> Length
>
> 'altvec' methods a class should provide:
>
> Extract_subset
> not Dataptr
> not Dataptr_or_null
>
> 'altlist' specific methods:
>
> Elt
> Set_elt
>
> Best,
>
> luke
>
> On Tue, 23 Jul 2019, Gabriel Becker wrote:
>
> > Hi Kylie...
2020 Oct 29
0
[External] Something is wrong with the unserialize function
...ly build a connection
> between two R processes and export the ALTREP object. See output below
> ```
>> con <- socketConnection(port = 1234,server = FALSE)
>> gctorture()
>> x <- unserialize(con)
> Warning message:
> In unserialize(con) :
> cannot unserialize ALTVEC object of class 'mmap_real' from package
> 'simplemmap'; returning length zero vector
> ```
> It seems like simplemmap did not get loaded correctly on the worker. If
> you run `library( simplemmap)` before unserializing the ALTREP, there will
> be no problem. But I s...
2020 Oct 29
0
[External] Something is wrong with the unserialize function
...xport the ALTREP object. See output below
> > ```
> >> con <- socketConnection(port = 1234,server = FALSE)
> >> gctorture()
> >> x <- unserialize(con)
> > Warning message:
> > In unserialize(con) :
> > cannot unserialize ALTVEC object of class 'mmap_real' from package
> > 'simplemmap'; returning length zero vector
> > ```
> > It seems like simplemmap did not get loaded correctly on the worker. If
> > you run `library( simplemmap)` before unserializing the ALTREP, there...
2019 Jul 24
0
[External] Re: Any plans for ALTREP lists (VECSXP)?
...The default methods in altrep.c should do the right think.
A reasonable name for the abstract class would be 'altlist'.
'altrep' methods that a class can provide:
Unserialize or UnserializeEX
Serialized_state
Duplicate or DuplicateEx
Coerce
Inspect
Length
'altvec' methods a class should provide:
Extract_subset
not Dataptr
not Dataptr_or_null
'altlist' specific methods:
Elt
Set_elt
Best,
luke
On Tue, 23 Jul 2019, Gabriel Becker wrote:
> Hi Kylie,
>
> Is it a list with only numerics in it? (I only see REALSXPs there,...
2010 Oct 04
5
[LLVMdev] 2.8 Release notes
Hi All,
I've finished the first draft of the 2.8 release notes:
http://llvm.org/docs/ReleaseNotes.html
Please feel free to commit improvements and enhancements. There are "a lot" of changes that went into 2.8, but I think I've scraped most of them out of the commits. However, it is also highly likely that I missed something, so if I missed your favorite feature, please speak
2019 Jul 23
3
Any plans for ALTREP lists (VECSXP)?
Hi Kylie,
Is it a list with only numerics in it? (I only see REALSXPs there, but
obviously inspect isn't showing all of them). If so, you could load it up
into one big vector and then also keep partitioning information around.
Bioconductor does this (see ?IRanges::CompressedList ). The potential
benefit here being that the underlying large vector could then be a big
out-of-memory altrep. How