Code Monkey home page Code Monkey logo

Comments (3)

ftynse avatar ftynse commented on September 24, 2024

Getting LLVM IR out is a bit annoying because it is not even visible at the Python level. However, you can dump LLVM Dialect using https://github.com/google/iree-llvm-sandbox/blob/main/python/examples/core/harness.py#L123 and call mlir-translate before calling llc.

I am not sure what mlir-c-runner refers to here, there is libmlir_c_runner_utils.so and mlir-cpu-runner.

from iree-llvm-sandbox.

nicolasvasilache avatar nicolasvasilache commented on September 24, 2024

There is also the tools/llvm-mca.py script that I use successfully to cross-compile and pipe through llvm-mca.
It generates all the interim files and can start from either the mlir in llvm-dialect form or from the jitt'ed .o

The part that is trickier is producing the .o without running as it needs to happen in ExecutionEngine.
Then there is the problem that the LLVM passes in the JIT will differ from what you do on the CLI:
I do not get the same binary using the llvm-mca.py if I start form .mlir or from .o and I do not have a good way to reconcile those atm.

Usage of llvm-mca.py:

(cd ${IREE_LLVM_SANDBOX_SOURCE_DIR}; python -m python.tools.llvm_mca -mlir-translate=${LLVM_BUILD_DIR}/bin/mlir-translate -llvm-objdump=${LLVM_BUILD_DIR}/bin/llvm-objdump \
  -llvm-llc=${LLVM_BUILD_DIR}/bin/llc -llvm-opt=${LLVM_BUILD_DIR}/bin/opt -llvm-mca=${LLVM_BUILD_DIR}/bin/llvm-mca -mlir-file=/tmp/abc.mlir -f=transpose_2d_on_tensors; \
    less /tmp/abc.mlir_llvm_mca.out)

You need to pass the proper -mlir-file=/tmp/abc.mlir -f=transpose_2d_on_tensors for your use case.
This will create all the /tmc/abc.mlirxxx files needed (.ll, .o etc).

This should compose well with the other functionality that dump LLVM dialect to file.

from iree-llvm-sandbox.

giuseros avatar giuseros commented on September 24, 2024

This has also been done. Closing

from iree-llvm-sandbox.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.