Michael Sundvick

Results 8 comments of Michael Sundvick

Possibly related: I was just looking into trying to make a combined python-julia project (with the python and julia code in the same git repository, and neither are published). Any...

Ok, to make this easier I thought I'd actually publish an example (and also contribute to this issue a little more directly). You can see what I'm currently doing here...

Oh duh, there's a workaround for my particular case. Since ray is spawning processes, and juliacall is inserting the module into the process during the init step, something like this...

Oh nice! This does solve the pickle issue, something like this works just fine ```python import pickle from juliacall import Base a = pickle.loads(pickle.dumps(Base)) print(a.rand()) ``` Unfortunately, the way distributed...

Also, new issue really, but where's juliacall_pipdir gone? I'm getting UndefVarError when following the juliacall setup instructions while on master. Manually hunting down the location and runnning pip install is...

Sure, it's not terribly elegant but it works well enough for now. Yeah, I can totally see the GIL being a pain, so no worries if it takes a while...

Just ran into this. Could be wrong, but this line seems like the culprit? https://github.com/indygreg/PyOxidizer/blob/b78b0cb75f4317c45408bbc9a569c062c482c679/pyembed/src/interpreter.rs#L576 My theory is `call1` takes positional arguments only, no kwargs. It calls to ` def...

We've been building a DLL for use with Unreal, and this is certainly a bit of a PITA, looks like the same issue. This issue appears related to https://github.com/dtolnay/cxx/issues/1153. There...