You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encountered a reproducible problem when creating big.matrix objects using a Debian docker container. The same also happens for a different one running Ubuntu.
To reproduce, you only need to take the following steps:
# Pull the r-base package
docker pull r-base
# Run R using an interactive shell on the image
docker run -ti --rm r-base /usr/bin/R
In the interactive R session, you run:
# Install bigmemory
install.packages('bigmemory')
# Load the package and run tests
library(bigmemory)
# Worksx<- big.matrix(5, 2)
# BUS errorx<- big.matrix(53110, 1540)
The code works on the R version on my Mac without problems. The same code in the docker container yielded the described problem. I've also tested the docker container on a Linux machine with over 60GB RAM (which the docker container can access) and the outcome remains the same.
@kaneplusplus already asked whether this is a 64-bit Linux. uname -i yields x86_64, so this shouldn't be the problem.
The text was updated successfully, but these errors were encountered:
I encountered a reproducible problem when creating
big.matrix
objects using a Debian docker container. The same also happens for a different one running Ubuntu.To reproduce, you only need to take the following steps:
In the interactive
R
session, you run:The last command yields the following error:
The code works on the
R
version on my Mac without problems. The same code in the docker container yielded the described problem. I've also tested the docker container on a Linux machine with over 60GB RAM (which the docker container can access) and the outcome remains the same.@kaneplusplus already asked whether this is a 64-bit Linux.
uname -i
yieldsx86_64
, so this shouldn't be the problem.The text was updated successfully, but these errors were encountered: