Jonatan Kłosko
Jonatan Kłosko
Hey @AdrianPaulCarrieres, what error do you get? Same as here or same as https://github.com/livebook-dev/livebook/issues/1290. It may be useful if you can paste it for the reference. The issue in https://github.com/livebook-dev/livebook/issues/1290...
Ohh, I think I interpreted the logs the other way around, if aarch64 is the build target, then it makes sense and `XLA_TARGET_PLATFORM` is the way to go, good catch!
@jonmmease unfortunately the segfault still happens :(
If at all useful, here's the stacktrace obtained via lldb: Stacktrace ``` * thread #7, name = 'conversion2', stop reason = unknown crash reason * frame #0: 0x00005570f5a01440 frame #1:...
It looks like I cannot reproduce it on GitHub Actions, I used a minimal setup: ```yaml jobs: vl-convert-rs-example2: runs-on: ubuntu-20.04 container: image: ubuntu:22.04 steps: - uses: actions/checkout@v2 - run: |...
@charlesfsl you can try this: Details ```rust use vl_convert_rs::converter::VlOpts; use vl_convert_rs::{VlConverter, VlVersion}; #[tokio::main] async fn main() { let vl_spec: serde_json::Value = serde_json::from_str( r#" { "$schema": "https://vega.github.io/schema/vega-lite/v5.json", "data": {"url": "data/movies.json"}, "mark":...
@jonmmease I've tried the workaround in the Elixir lib it works for me, I asked @charlesfsl to double-check. Is my understanding correct that with this approach we can convert one...
@jonmmease thank you, that makes sense!
@josevalim calling elixir and `:json` sounds best (otherwise we need to mix.install), but currently we only require OTP 25. That said, it should be fine to bump the requirement, since...
@krainboltgreene good call parsing with release eval!