Stream: git-wasmtime

Topic: wasmtime / Issue #2050 Integrate wasi-nn


view this post on Zulip Wasmtime GitHub notifications bot (Jul 20 2020 at 19:30):

abrown commented on Issue #2050:

I didn't update the Git submodules, 97d03e1 isn't going to work here (only locally). This is the wasi-nn state that I am using: https://github.com/WebAssembly/wasi-nn/compare/integration.

view this post on Zulip Wasmtime GitHub notifications bot (Jul 20 2020 at 19:49):

github-actions[bot] commented on Issue #2050:

Subscribe to Label Action

cc @kubkon

<details>
This issue or pull request has been labeled: "wasi"

Thus the following users have been cc'd because of the following labels:

To subscribe or unsubscribe from this label, edit the <code>.github/subscribe-to-label.json</code> configuration file.

Learn more.
</details>

view this post on Zulip Wasmtime GitHub notifications bot (Jul 20 2020 at 22:00):

kubkon commented on Issue #2050:

From a quick glance at the generated error messages, I think you might have just hit a bug in wiggle or your witx definition file specifies some interface functions in conflict with the expected lifetimes. Either way, I think this is something at the level of the generated trait by wiggle, and the lifetimes mismatch. For instance, it could be that the generated trait method is something like this:

trait WasiNN {
    fn do_stuff<'a>(&self, ptr: GuestPtr<'_, A>);
}

where 'a is unusued.

If you're not in super hurry, I can take a closer look tomorrow and help you debug it.


Last updated: Oct 23 2024 at 20:03 UTC