Closed wangkuiyi closed 1 year ago
I can run python/export.py
to get the MLIR and vmfb files. Do I need to worry about the error above if all I want to do is run the vmfb with the IREE runtime?
No, the above was due to a missing transfer/change in API. I think that is resolved, but either way doesn't affect anything VMFB side.
When I ran
models/gpt2/test_jax.py
with the backend"iree"
, I got the following error. (The test passed whenbackend="cpu"
.)For a full list of stdout and stderr, please go to https://gist.github.com/wangkuiyi/90859c3a33af4ebaddd357e527add33d.
I didn't know that IREE could work as a backend for "jax.jit" until I read the following code:
https://github.com/iree-org/iree-jax/blob/26006ef5842a604e28ea71e65e9224ad20f028e9/models/gpt2/test_jax.py#L56-L57
I'm not sure if the above error happened because I didn't build JAX and jaxlib from source code but instead used pip to install them.