You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment we are only building the mlir fatlib that is enabled when building with option BUILD_FAT_LIBROCKCOMPILER=ON option. This is needed by amdmigraphx. But for testing and using the MLIR, we need to build also the mlir-gen and other tools and libraries that does not get build when BUILD_FAT_LIBROCKCOMPILER=ON option is used.
So we need to have 2 rocMLIR binfo build files.
The text was updated successfully, but these errors were encountered:
Did a first build with default options and got rocmlir-gen build. Libraries are however not installed properly by default and seeing a lot of missing dependencies. LD_LIBRARY_PATH=external/llvm-project/llvm/lib did not solve those but managed to test the code-generation working for gfx1010/1030/35/1100/1103 targets by copying libraries to bin folder.
cd rocm_sdk_builder_612/builddir/031_01_miopen_rocMLIR/bin
bin$ cp ../external/llvm-project/llvm/lib/*.so.17git ../bin
for example following example modified from the mlir/test/rocmlir-driver/sanity.mlir
At the moment we are only building the mlir fatlib that is enabled when building with option BUILD_FAT_LIBROCKCOMPILER=ON option. This is needed by amdmigraphx. But for testing and using the MLIR, we need to build also the mlir-gen and other tools and libraries that does not get build when BUILD_FAT_LIBROCKCOMPILER=ON option is used.
So we need to have 2 rocMLIR binfo build files.
The text was updated successfully, but these errors were encountered: