llvmlite
llvmlite copied to clipboard
A lightweight LLVM python binding for writing JIT compilers
This is a small thing but I spent quite some time in the docs looking for how to get the machine assembly (because I would like to check for specific...
I would recommend refactoring the code so that the quotation check is in `NamedValue` but we are too close to cutting a release. We will do the refactoring later since...
See https://github.com/numba/llvmlite/pull/502#discussion_r327901993
Static analysis is flagging this code section as being vulnerable to command injection: build.py (101-105): llvm_config = os.environ.get('LLVM_CONFIG', 'llvm-config') print("LLVM version... ", end='') sys.stdout.flush() try: out = subprocess.check_output([llvm_config, '--version']) The...
`Installing dependencies from Pipfile.lock (e81337)… 213An error occurred while installing llvmlite==0.29.0 --hash=sha256:1948dbefe77862c48dacb1f7a131ff1077fa0cc0afadd312d25d80fe6fc920ef --hash=sha256:1f2424dfbc1f459aab3ed0a855b8ee1e88695cf6824343a116eb21cb6dc35ca1 --hash=sha256:2b74a3edf542004edcf9cdb47e05ea481b33e01f633ce45ea0c68124ebf50647 --hash=sha256:3adb0d4c9a17ad3dca82c7e88118babd61eeee0ee985ce31fa43ec27aa98c963 --hash=sha256:52886658699f70de42ec6aeba6982a1fc8fa05a69ef10b8094eaa54e883d749e --hash=sha256:61e3f5e9a6fad63af1cb7f7d414dc4da260d315885fdc6cc252641fc911f9dec --hash=sha256:6af0f4eaa07ac1565ecb5bc64fee8b047763cca61520e23c8ab13316058c0f06 --hash=sha256:8b24b13849b56cf94b9f3fcc1b7c54a89745589da23d800ace4675242266506e --hash=sha256:9b4bebf5ea91a389798fe3b84436f03e014553fc156389bf810be7c7479f71d6 --hash=sha256:9c75225903928fcef35fdda9bfb80460f90f12c442cb85bf524f91d9874fb17d --hash=sha256:9c9cb21527cff7e7e7ab17f13c335cf66fe2c219309fd6693aab6c0edaf422d0 --hash=sha256:a1090704f44a2f2b1b6f69ec0bcf9c7179d16917b2ab9799af9e70130420c35d --hash=sha256:b51863eb1dc5397070e37124665dd472770d685cfff24546bacf3a779a5a8c32 --hash=sha256:bd68e01f1444e38983a364ad1810bdaf3eb59ca1fe8aff4a33cc17a90cb9fcdb --hash=sha256:c4e02a7496f43306d359edf22770014b650291978f5ad2a7a172e187ee3fd1e3 --hash=sha256:c8f3012179f2352badaf91c9d148814f0dcefb06951b313087585f5ff80b40a7 --hash=sha256:c8f7099f31e3ba8257777d179e0186a80ec7a810ae4500da8aa6254017adc7bf --hash=sha256:dc8ac5f3b65cc7b50f4b777afb71b4e2896ecbbaf07657a6fc789098603e38e7 --hash=sha256:f0f93e0e0644dfb635f258d48971827236c3a235811f179465a16040b8f21228...
It would be useful to be able to build LLVM exactly as it would be build inside a `conda build` of llvmdev, but using a script instead of conda. Use...
Hi I installed the aarch64 prebuilts for LLVM 5.0 on my raspeberry pi 3 and then did a 'pip3 install numba', pointing LLVM_CONFIG at the llvm-config executable. I get a...
Is there some way you can apply JIT on GUI applications using llvmlite? Suppose I had this GUI code (using tkinter): ```python from tkinter import * window = Tk() window.title("My...
If I have an existing ctype object, is there any way for me to create a llvmlite object that refers to the ctype object?
Hello. I didn't read the documentation well and in ir.types to structtype.set_body() passed list. So maybe it would be good if set_body function code will be as or like below?...