float icon indicating copy to clipboard operation
float copied to clipboard

Single precision (float) matrices for R.

Results 23 float issues
Sort by recently updated
recently updated
newest added

Hi! I am trying to install the `text2vec` which ultimately fails complaining about the `float` dependency. The culprit seems to be ``` undefined symbol: iparam2stage_ ``` I have noticed the...

From https://github.com/david-cortes/MatrixExtra/issues/5 Calling `float:::ldflags(static=TRUE)` on a system in which the R installation path contains spaces will produce an invalid path as it won't add quotation marks around it.

Error, "install.package" doesn't exist

According to Prof. Ripley, the upcoming clang13 has issues compiling packages which include `` after some R headers such as `` (which is part of ``). This PR should fix...

I think this should fix dynamic linkage for macOS, at least when using the apple clang compiler. Not sure how universal this solution is though, or whether it will work...

I'm having issues with the CRAN checks on apple M1 for a package that links to `float`: https://www.stats.ox.ac.uk/pub/bdr/M1mac/recometrics.log https://www.stats.ox.ac.uk/pub/bdr/M1mac/recometrics.out Seems the linking is not working: ``` * installing *source* package...

Hey, thanks for making this! I have an existing code base oriented around data.table, and I'd love to get the memory savings from using these instead of numeric. I'm wondering:...

The method `as.matrix` will convert a `float32` vector into a `float32` matrix. However, `as.matrix` as used in other packages is meant to return a `matrix` object, which allows creating libraries...

For some reason, it's not possible to use `float32` vectors in an `ifelse` construct. The following line will get stuck without doing anything: ```r ifelse(TRUE, float::fl(1), 1) ```