When numba is used, codegen fails for operations that use other operators. For example, inversion requires the geometric product. Because numba is already applied in codegen_gp, it's reuse in the computation of the inverse fails. The fix is to delay the application of numbajit to outside of the codegen procedure.
When numba is used, codegen fails for operations that use other operators. For example, inversion requires the geometric product. Because
numba
is already applied in codegen_gp, it's reuse in the computation of the inverse fails. The fix is to delay the application of numbajit to outside of the codegen procedure.