Closed drhagen closed 2 months ago
:warning: Please install the to ensure uploads and comments are reliably processed by Codecov.
Attention: Patch coverage is 83.64389%
with 79 lines
in your changes missing coverage. Please review.
Project coverage is 90.53%. Comparing base (
bc2013a
) to head (720de80
).
:exclamation: Your organization needs to install the Codecov GitHub app to enable full functionality.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
This uses llvmlite to build LLVM code from the Tensora IR. Use of the LLVM backend is controlled with the
tensora.compile.BackendCompiler.{llvm,cffi}
flag toTensorMethod
. This is also exposed as the-l llvm
option to the CLI, which prints out LLVM IR.llvmlite has a ctypes interface, but this PR still uses cffi for the taco tensor structures and invoking the compiled function.
Implements #66.