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
{{ message }}
This repository was archived by the owner on Apr 28, 2023. It is now read-only.
I'm trying to programatically generate array based code (like one uses LLVM to codegen to assembly). I was hoping to find some sort of LLVM's IRBuilder like abstraction, but couldn't find any such thing. Having to generate a textual format that will eventually get re-parsed by TensorComprehensions is both needless and painful :)
Is there an (internal, unstable) API to hand the library an AST of the computation I would want to perform? I don't even mind passing in an ISL schedule tree if that's the representation level that's accepted.
I'm trying to programatically generate array based code (like one uses LLVM to codegen to assembly). I was hoping to find some sort of LLVM's
IRBuilderlike abstraction, but couldn't find any such thing. Having to generate a textual format that will eventually get re-parsed byTensorComprehensionsis both needless and painful :)Is there an (internal, unstable) API to hand the library an AST of the computation I would want to perform? I don't even mind passing in an ISL schedule tree if that's the representation level that's accepted.
Thanks!