Marius Brehler
Marius Brehler
> I ran into this when trying to create a job that builds the IREE benchmarks (essentially import and compile some TFLite models). Currently they're built as part of the...
> We should revisit this: > > https://github.com/google/iree/blob/68c27a08f42ba64d566f7a6e4816550f6e0f57ae/build_tools/cmake/iree_copts.cmake#L449-L452 > > either using our IREE-specific `IREE_HOST_BINARY_ROOT` or using LLVM's `add_tablegen` In case that using LLVM‘s `add_tablegen` is acceptable I could come...
I had a quick lock at the compiler options passed to MSVC/clang-cl which raised a question: Should we really set [/Os](https://docs.microsoft.com/en-us/cpp/build/reference/os-ot-favor-small-code-favor-fast-code?view=msvc-170) explicitly here or should this rather be controlled by...
I started to look for equivalent options, resulting in a need for discussion: Regarding the equivalent to [`/GL`](https://docs.microsoft.com/en-us/cpp/build/reference/gl-whole-program-optimization?view=msvc-170), we could pass `-fwhole-program` to GCC, see https://gcc.gnu.org/onlinedocs/gcc/Optimize-Options.html. However, `-fwhole-program` should not...
Thanks for reporting @hcindyl! It seems we have the same problem with the vision inference / MNIST [sample](https://github.com/iml130/iree-bare-metal-arm/tree/main/samples/vision_inference) compiled with iree-bare-metal-arm and running it on Renode: ``` 15:20:30.1190 [INFO] usart2:...
The failure we're seeing is related to commit 76bf2f3 (the merge of #9754). The last commit working for me is d46c881.
It can be landed after the next integrate, no need to patch it into the integrate :) The motivation for sending this PR out so early was that I don't...
Yeah, I should have been more precise. When cross-compiling a project that is build with the LLVM external project mechanism, the wrong `mlir-tblgen` was selected. Instead of the native mlir-tblgen,...
> This relates a bit to #5420 (in that the CMake configuration needed tweaks to support cross compiling the compiler) Absolutely, thanks for linking this! And yes, there is more...
@GMNGeoffrey Tests are passing now :)