Ritchie Lee
Ritchie Lee
No, I didn't solve it.
This [thread](https://www.mathworks.com/matlabcentral/answers/305877-what-is-the-primary-message-table-for-module-77) seems to suggest that the fix should be opening the dummy persistent session with engOpenSingleUse. However, in the code, I don't see that being called. It looks like...
All sessions that use engOpen share a global context. My interest is actually in multiple parallel processes, so it seems like I need engOpenSingleUse for all my MSessions.
I got it to work for parallel processes using engOpenSingleUse for all sessions. However, startup is very very slow. For large jobs, the parallelization still outweighs the startup cost. In...
Maybe just let the user decide by adding a keyword argument to the constructor of the session: ``MSession(; single_use::Bool=false)`` and default it to the current behavior.
I eventually did fine a workaround, although I don't have the exact code with me to check. I believe the workaround was to add a keyword argument single_use to MSession...
As a workaround, I created a Julia package that wraps necpp python. As the user calls the individual functions (like wire), I intercept it, format it, and spit it out...
Hi @jaxbot, that's correct. It seems that anything quoted in brackets doesn't seem to be parsed correctly. (other examples are DT_FLOAT32 on line 27, n_classes on line 46, etc.) I've...
I was eventually able to find a fix. It seems ``CB_NOTIFY_PTR[]`` becomes invalid after creating the sysimage. The pointer points to some location, but it cannot be used. The workaround...
I'm interested in this for DPW / continuous actions. I need it for my research. For me, it should look as much like a continuous bandit problem as possible. Best...