Source code checked in, #9c1fd54b7f3f
Precisions as to how to set up the dllmap entry in the appropriate .config file
View ArticleCommented Issue: dlopen: invalid caller on loading libR.so on CentOS [73]
Repro:Revision: 237Changeset: 8375124a9341c72faaba1bd8a8f31a34d8663b5c [8375124a9341]Date: Monday, 25 November 2013 11:34:08 AMBranch: jperraudSee...
View ArticleNew Post: R.NET startup parameter MaxMemorySize ignored
Hi, I'd like to limit the memory for my R engine. I tried using: engine.Initialize(new StartupParameter() { MaxMemorySize = n }) ; with various values for "n" later I did...
View ArticleNew Post: R.NET startup parameter MaxMemorySize ignored
This is probably not a known bug, but given a recent dive into the R engine initialization this would not surprise me there is an issue. I got a case where the Interactive startup parameters looked...
View ArticleNew Post: R.NET startup parameter MaxMemorySize ignored
I am using Windows. It is also strange that R GUI run without params gives me a different memory limit than R.NET.
View ArticleCreated Issue: StartupParameters are not picked up by the engine...
Added a unit test reproducing https://rdotnet.codeplex.com/discussions/471488 to the revision below.This is an issue that likely needs a mail to R-devel. And/or, set up a way to step through the native...
View ArticleNew Post: R.NET startup parameter MaxMemorySize ignored
I have logged an issue at https://rdotnet.codeplex.com/workitem/74. I can reproduce the issue even on the latest (rev 241) development code I work on (branch 'jperraud') with a revised engine...
View ArticleNew Post: R.NET startup parameter MaxMemorySize ignored
Are you now initializes by passing strings or did you change your branch to pass the struct still? will try to look at this later as part of the --no-save/vanilla issue from earlier.
View ArticleNew Post: R.NET startup parameter MaxMemorySize ignored
I am calling Rf_initialize with command line arguments, and then passing the starting parameters still. I appeared to need to do both on Linux to get it to work in an MPI application, and this seemed...
View ArticleCommented Issue: Problems when R runs on other threads [71]
In mono, if a thread from the thread pool uses the REngine, several errors about a limited stack size appear. This is described in section 8.1.5 of http://cran.r-project.org/doc/manuals/R-exts.pdfOne...
View ArticleCommented Unassigned: multithreading in R.Net with c# [66]
Hi All,i'm execute r script in asp.net mvc 4, and it's o.k. but when trying to do it in multithreading it' fail.please help someone !!!!!!!!Comments: I think this issue should be closed.
View ArticleNew Post: exception unhandled in Reading data
Hello Thank you for the wonderful middle ware R.NET. I am trying to let R read data My VB. net code is: Dim charVec As CharacterVector = engine.CreateCharacterVector(New String() {"low_train.csv"})...
View ArticleNew Post: r.net performance
So... After a big headache, I found a way to fix the problem "A first chance exception of type 'System.DllNotFoundException' occurred in RDotNet.NativeLibrary.dll" . Basically, my windows is 64 bits...
View ArticleNew Post: exception unhandled in Reading data
ParseException is thrown when the native R engine returned an error code to R.NET. Unfortunately there is no more details as to what goes wrong coming from the R dll. Can you give the whole code sample...
View ArticleNew Post: exception unhandled in Reading data
Thank you jperraud the code is Imports RDotNet Imports RDotNet.NativeLibrary ..... ... .. Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim oldPath =...
View ArticleNew Post: exception unhandled in Reading data
I suspect you get this exception if you click twice on your button. Such issues have been reported, and are expected since the R engine must not be initialized twice in the same process. The following...
View ArticleNew Post: exception unhandled in Reading data
Thank you very much Your solution is very useful problem solved
View ArticleCreated Unassigned: Crazy mono...
I am using the jperraud branch and just tried to load R on CentOS using the new initialization that passes in strings ( this was to test/avoid the whole --no-save/-vanilla stuff). When I tried this I...
View ArticleEdited Unassigned: Crazy mono glibc detected error [75]
I am using the jperraud branch and just tried to load R on CentOS using the new initialization that passes in strings ( this was to test/avoid the whole --no-save/-vanilla stuff). When I tried this I...
View ArticleNew Post: R.NET startup parameter MaxMemorySize ignored
The latest commit (initializing by passing strings instead of the struct), does appear to fixe the --no-save/vanilla issue, thanks much for the changes!
View Article