Stepan Sindelar

Results 116 comments of Stepan Sindelar

``` Caused by: java.lang.OutOfMemoryError ``` indeed not enough memory. I'll have to give the container and possibly also the JVM (via `--vm.Xmx{Size}`) more memory.

You need to pass it to the R command, example: ``` R --vm.Xmx8g ``` will set the max heap size to 8GB, which should be enough. Now the question is...

This documentation: https://docs.docker.com/config/containers/resource_constraints tells me that you probably need something like ``` docker run --memory=8g -it --oom-kill-disable -m 18g ghcr.io/graalvm/graalvm-ce:21.0.0 bash ``` and then still run FastR with the `--vm.Xmx8g`...

Hello, this looks like a compilation issue. By default we compile packages using the [GraalVM LLVM Toolchain](https://medium.com/graalvm/graalvm-llvm-toolchain-f606f995bf). If I simplify this, GraalVM LLVM Toolchain is a thin wrapper around `clang`...

Note that if you compile the packages with `gcc`, you won't be able to run them using the LLVM back-end (`--R.BackEnd=llvm`).

Hello, thank you for you interest in FastR! Yes, R matrices are presented as flat arrays to Java. That is what they are in R as well -- regular flat...

> The inconvenience with manipulating polyglot values is that they are alien to the languages and the functions in the languages can not be used to manipulate the information. The...

Hello hsselman, thank you for all the three reports and the feedback! We will take a closer look at them and get back when we have more details. In general,...

Hi comicfans, thanks for reporting this issue. We can reproduce and the fix should be available soon. In the meantime you can run FastR with environment variable `TZ` set to...

seems that the "CST" abbreviation is interpreted differently by the system libraries and Java, so the fix will not be that easy. Out of curiosity, what timezone do you intend...