Skip to content

Instantly share code, notes, and snippets.

@sergei-mironov
Created October 18, 2023 20:17
Show Gist options
  • Save sergei-mironov/ff5040b783bcb2edabd561b99a98acbf to your computer and use it in GitHub Desktop.
Save sergei-mironov/ff5040b783bcb2edabd561b99a98acbf to your computer and use it in GitHub Desktop.
output.md
@qjit(autograph=True, verbose=True, keep_intermediate=True)
@qml.qnode(qml.device("lightning.qubit", wires=1))
def fn(x: float):
    qml.RY(x, wires=0)
    return qml.expval(qml.PauliZ(0))

fn(np.pi)
[LIB] Running compiler driver in /workspace/src/autograph/fn_5
[LIB] Dumping '/workspace/src/autograph/fn_5/0_fn.mlir'
[LIB] Dumping '/workspace/src/autograph/fn_5/1_pipeline.mlir'
<function fn at 0x7f0a9019fd90> is not cached for subkey ConversionOptions[{}]
Source code of <function fn at 0x7f0a9019fd90>:

@qjit(autograph=True, verbose=True, keep_intermediate=True)
@qml.qnode(qml.device("lightning.qubit", wires=1))
def fn(x: float):
    qml.RY(x, wires=0)
    return qml.expval(qml.PauliZ(0))


Transformed <function fn at 0x7f0a9019fd90>:

# coding=utf-8
def fn(x: float):
    with ag__.FunctionScope('fn', 'fscope', ag__.ConversionOptions(recursive=True, user_requested=True, optional_features=(), internal_convert_user_code=True)) as fscope:
        ag__.converted_call(qml.RY, (x,), dict(wires=0), fscope)
        return ag__.converted_call(qml.expval, (ag__.converted_call(qml.PauliZ, (0,), None, fscope),), None, fscope)

Converted call: <class 'pennylane.ops.qubit.parametric_ops_single_qubit.RY'>
    args: (Traced<ShapedArray(float64[], weak_type=True)>with<DynamicJaxprTrace(level=2/0)>,)
    kwargs: {'wires': 0}

Permanently allowed: <class 'pennylane.ops.qubit.parametric_ops_single_qubit.RY'>: constructor
Converted call: <class 'pennylane.ops.qubit.non_parametric_ops.PauliZ'>
    args: (0,)
    kwargs: None

Permanently allowed: <class 'pennylane.ops.qubit.non_parametric_ops.PauliZ'>: constructor
Converted call: <function expval at 0x7f0ad7bfe320>
    args: (PauliZ(wires=[0]),)
    kwargs: None

Allowlisted: <function expval at 0x7f0ad7bfe320>: DoNotConvert rule for pennylane
[LIB] Running compiler driver in /workspace/src/autograph/fn_5
[LIB] Dumping '/workspace/src/autograph/fn_5/0_fn.mlir'
[LIB] Dumping '/workspace/src/autograph/fn_5/1_HLOLoweringPass.mlir'
[LIB] Dumping '/workspace/src/autograph/fn_5/2_QuantumCompilationPass.mlir'
[LIB] Dumping '/workspace/src/autograph/fn_5/3_BufferizationPass.mlir'
[LIB] Dumping '/workspace/src/autograph/fn_5/4_MLIRToLLVMDialect.mlir'
[LIB] Dumping '/workspace/src/autograph/fn_5/5_llvm_ir.ll'
[LIB] Dumping '/workspace/src/autograph/fn_5/6_PreEnzymeOpt.ll'
[LIB] Dumping '/workspace/src/autograph/fn_5/7_Enzyme.ll'
[LIB] <unknown>:0: remark: loc("LLVMDialectModule"): Found LLVM function: __quantum__rt__finalize
[LIB] 
[LIB] <unknown>:0: note: loc("LLVMDialectModule"): diagnostic emitted with trace:
[LIB]  #0 0x00007f0ad334dfd3 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x8b4dfd3)
[LIB]  #1 0x00007f0ad118f549 emitDiag(mlir::Location, mlir::DiagnosticSeverity, llvm::Twine const&) Diagnostics.cpp:0:0
[LIB]  #2 0x00007f0ad118f65e mlir::emitRemark(mlir::Location) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x698f65e)
[LIB]  #3 0x00007f0acdc80da2 getJITFunction(mlir::MLIRContext*, llvm::Module&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x3480da2)
[LIB]  #4 0x00007f0acdc8531a QuantumDriverMain(catalyst::driver::CompilerOptions const&, catalyst::driver::CompilerOutput&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x348531a)
[LIB]  #5 0x00007f0acdc7db76 void pybind11::cpp_function::initialize<pybind11_init_compiler_driver(pybind11::module_&)::$_8, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>>, char const*, char const*, char const*, bool, bool, pybind11::list, bool, pybind11::name, pybind11::scope, pybind11::sibling, pybind11::arg, pybind11::arg, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v>(pybind11_init_compiler_driver(pybind11::module_&)::$_8&&, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>> (*)(char const*, char const*, char const*, bool, bool, pybind11::list, bool), pybind11::name const&, pybind11::scope const&, pybind11::sibling const&, pybind11::arg const&, pybind11::arg const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&)::'lambda'(pybind11::detail::function_call&)::__invoke(pybind11::detail::function_call&) PyCompilerDriver.cpp:0:0
[LIB]  #6 0x00007f0acdc6f226 pybind11::cpp_function::dispatcher(_object*, _object*, _object*) PyCompilerDriver.cpp:0:0
[LIB]  #7 0x000055a75375999e (/usr/bin/python3.10+0x15c99e)
[LIB]  #8 0x000055a7537504ab _PyObject_MakeTpCall (/usr/bin/python3.10+0x1534ab)
[LIB]  #9 0x000055a753749683 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14c683)
[LIB] #10 0x000055a753767d7e (/usr/bin/python3.10+0x16ad7e)
[LIB] #11 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #12 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #13 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #14 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #15 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #16 0x000055a75374f634 _PyObject_FastCallDictTstate (/usr/bin/python3.10+0x152634)
[LIB] #17 0x000055a753763e94 (/usr/bin/python3.10+0x166e94)
[LIB] #18 0x000055a75375044c _PyObject_MakeTpCall (/usr/bin/python3.10+0x15344c)
[LIB] #19 0x000055a753748815 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14b815)
[LIB] #20 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #21 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #22 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #23 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #24 0x000055a75383b04d (/usr/bin/python3.10+0x23e04d)
[LIB] #25 0x000055a75375a449 (/usr/bin/python3.10+0x15d449)
[LIB] #26 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #27 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #28 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #29 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #30 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #31 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #32 0x000055a753856ecf (/usr/bin/python3.10+0x259ecf)
[LIB] #33 0x000055a75376571a (/usr/bin/python3.10+0x16871a)
[LIB] #34 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #35 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #36 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #37 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #38 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #39 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #40 0x000055a753743adf _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x146adf)
[LIB] #41 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #42 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #43 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #44 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #45 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #46 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #47 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #48 0x000055a7537688e2 PyObject_Call (/usr/bin/python3.10+0x16b8e2)
[LIB] #49 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #50 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #51 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #52 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #53 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #54 0x000055a753862108 (/usr/bin/python3.10+0x265108)
[LIB] #55 0x000055a75385af5b (/usr/bin/python3.10+0x25df5b)
[LIB] #56 0x000055a753861e55 (/usr/bin/python3.10+0x264e55)
[LIB] #57 0x000055a753861338 _PyRun_SimpleFileObject (/usr/bin/python3.10+0x264338)
[LIB] #58 0x000055a753861033 _PyRun_AnyFileObject (/usr/bin/python3.10+0x264033)
[LIB] #59 0x000055a7538522de Py_RunMain (/usr/bin/python3.10+0x2552de)
[LIB] #60 0x000055a75382832d Py_BytesMain (/usr/bin/python3.10+0x22b32d)
[LIB] #61 0x00007f0b26fa3d90 (/lib/x86_64-linux-gnu/libc.so.6+0x29d90)
[LIB] #62 0x00007f0b26fa3e40 __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x29e40)
[LIB] #63 0x000055a753828225 _start (/usr/bin/python3.10+0x22b225)
[LIB] 
[LIB] <unknown>:0: remark: loc("LLVMDialectModule"): Found LLVM function: __quantum__rt__initialize
[LIB] 
[LIB] <unknown>:0: note: loc("LLVMDialectModule"): diagnostic emitted with trace:
[LIB]  #0 0x00007f0ad334dfd3 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x8b4dfd3)
[LIB]  #1 0x00007f0ad118f549 emitDiag(mlir::Location, mlir::DiagnosticSeverity, llvm::Twine const&) Diagnostics.cpp:0:0
[LIB]  #2 0x00007f0ad118f65e mlir::emitRemark(mlir::Location) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x698f65e)
[LIB]  #3 0x00007f0acdc80da2 getJITFunction(mlir::MLIRContext*, llvm::Module&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x3480da2)
[LIB]  #4 0x00007f0acdc8531a QuantumDriverMain(catalyst::driver::CompilerOptions const&, catalyst::driver::CompilerOutput&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x348531a)
[LIB]  #5 0x00007f0acdc7db76 void pybind11::cpp_function::initialize<pybind11_init_compiler_driver(pybind11::module_&)::$_8, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>>, char const*, char const*, char const*, bool, bool, pybind11::list, bool, pybind11::name, pybind11::scope, pybind11::sibling, pybind11::arg, pybind11::arg, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v>(pybind11_init_compiler_driver(pybind11::module_&)::$_8&&, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>> (*)(char const*, char const*, char const*, bool, bool, pybind11::list, bool), pybind11::name const&, pybind11::scope const&, pybind11::sibling const&, pybind11::arg const&, pybind11::arg const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&)::'lambda'(pybind11::detail::function_call&)::__invoke(pybind11::detail::function_call&) PyCompilerDriver.cpp:0:0
[LIB]  #6 0x00007f0acdc6f226 pybind11::cpp_function::dispatcher(_object*, _object*, _object*) PyCompilerDriver.cpp:0:0
[LIB]  #7 0x000055a75375999e (/usr/bin/python3.10+0x15c99e)
[LIB]  #8 0x000055a7537504ab _PyObject_MakeTpCall (/usr/bin/python3.10+0x1534ab)
[LIB]  #9 0x000055a753749683 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14c683)
[LIB] #10 0x000055a753767d7e (/usr/bin/python3.10+0x16ad7e)
[LIB] #11 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #12 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #13 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #14 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #15 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #16 0x000055a75374f634 _PyObject_FastCallDictTstate (/usr/bin/python3.10+0x152634)
[LIB] #17 0x000055a753763e94 (/usr/bin/python3.10+0x166e94)
[LIB] #18 0x000055a75375044c _PyObject_MakeTpCall (/usr/bin/python3.10+0x15344c)
[LIB] #19 0x000055a753748815 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14b815)
[LIB] #20 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #21 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #22 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #23 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #24 0x000055a75383b04d (/usr/bin/python3.10+0x23e04d)
[LIB] #25 0x000055a75375a449 (/usr/bin/python3.10+0x15d449)
[LIB] #26 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #27 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #28 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #29 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #30 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #31 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #32 0x000055a753856ecf (/usr/bin/python3.10+0x259ecf)
[LIB] #33 0x000055a75376571a (/usr/bin/python3.10+0x16871a)
[LIB] #34 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #35 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #36 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #37 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #38 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #39 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #40 0x000055a753743adf _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x146adf)
[LIB] #41 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #42 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #43 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #44 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #45 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #46 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #47 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #48 0x000055a7537688e2 PyObject_Call (/usr/bin/python3.10+0x16b8e2)
[LIB] #49 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #50 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #51 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #52 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #53 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #54 0x000055a753862108 (/usr/bin/python3.10+0x265108)
[LIB] #55 0x000055a75385af5b (/usr/bin/python3.10+0x25df5b)
[LIB] #56 0x000055a753861e55 (/usr/bin/python3.10+0x264e55)
[LIB] #57 0x000055a753861338 _PyRun_SimpleFileObject (/usr/bin/python3.10+0x264338)
[LIB] #58 0x000055a753861033 _PyRun_AnyFileObject (/usr/bin/python3.10+0x264033)
[LIB] #59 0x000055a7538522de Py_RunMain (/usr/bin/python3.10+0x2552de)
[LIB] #60 0x000055a75382832d Py_BytesMain (/usr/bin/python3.10+0x22b32d)
[LIB] #61 0x00007f0b26fa3d90 (/lib/x86_64-linux-gnu/libc.so.6+0x29d90)
[LIB] #62 0x00007f0b26fa3e40 __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x29e40)
[LIB] #63 0x000055a753828225 _start (/usr/bin/python3.10+0x22b225)
[LIB] 
[LIB] <unknown>:0: remark: loc("LLVMDialectModule"): Found LLVM function: __quantum__rt__qubit_release_array
[LIB] 
[LIB] <unknown>:0: note: loc("LLVMDialectModule"): diagnostic emitted with trace:
[LIB]  #0 0x00007f0ad334dfd3 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x8b4dfd3)
[LIB]  #1 0x00007f0ad118f549 emitDiag(mlir::Location, mlir::DiagnosticSeverity, llvm::Twine const&) Diagnostics.cpp:0:0
[LIB]  #2 0x00007f0ad118f65e mlir::emitRemark(mlir::Location) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x698f65e)
[LIB]  #3 0x00007f0acdc80da2 getJITFunction(mlir::MLIRContext*, llvm::Module&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x3480da2)
[LIB]  #4 0x00007f0acdc8531a QuantumDriverMain(catalyst::driver::CompilerOptions const&, catalyst::driver::CompilerOutput&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x348531a)
[LIB]  #5 0x00007f0acdc7db76 void pybind11::cpp_function::initialize<pybind11_init_compiler_driver(pybind11::module_&)::$_8, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>>, char const*, char const*, char const*, bool, bool, pybind11::list, bool, pybind11::name, pybind11::scope, pybind11::sibling, pybind11::arg, pybind11::arg, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v>(pybind11_init_compiler_driver(pybind11::module_&)::$_8&&, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>> (*)(char const*, char const*, char const*, bool, bool, pybind11::list, bool), pybind11::name const&, pybind11::scope const&, pybind11::sibling const&, pybind11::arg const&, pybind11::arg const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&)::'lambda'(pybind11::detail::function_call&)::__invoke(pybind11::detail::function_call&) PyCompilerDriver.cpp:0:0
[LIB]  #6 0x00007f0acdc6f226 pybind11::cpp_function::dispatcher(_object*, _object*, _object*) PyCompilerDriver.cpp:0:0
[LIB]  #7 0x000055a75375999e (/usr/bin/python3.10+0x15c99e)
[LIB]  #8 0x000055a7537504ab _PyObject_MakeTpCall (/usr/bin/python3.10+0x1534ab)
[LIB]  #9 0x000055a753749683 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14c683)
[LIB] #10 0x000055a753767d7e (/usr/bin/python3.10+0x16ad7e)
[LIB] #11 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #12 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #13 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #14 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #15 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #16 0x000055a75374f634 _PyObject_FastCallDictTstate (/usr/bin/python3.10+0x152634)
[LIB] #17 0x000055a753763e94 (/usr/bin/python3.10+0x166e94)
[LIB] #18 0x000055a75375044c _PyObject_MakeTpCall (/usr/bin/python3.10+0x15344c)
[LIB] #19 0x000055a753748815 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14b815)
[LIB] #20 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #21 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #22 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #23 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #24 0x000055a75383b04d (/usr/bin/python3.10+0x23e04d)
[LIB] #25 0x000055a75375a449 (/usr/bin/python3.10+0x15d449)
[LIB] #26 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #27 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #28 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #29 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #30 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #31 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #32 0x000055a753856ecf (/usr/bin/python3.10+0x259ecf)
[LIB] #33 0x000055a75376571a (/usr/bin/python3.10+0x16871a)
[LIB] #34 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #35 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #36 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #37 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #38 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #39 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #40 0x000055a753743adf _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x146adf)
[LIB] #41 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #42 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #43 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #44 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #45 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #46 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #47 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #48 0x000055a7537688e2 PyObject_Call (/usr/bin/python3.10+0x16b8e2)
[LIB] #49 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #50 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #51 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #52 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #53 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #54 0x000055a753862108 (/usr/bin/python3.10+0x265108)
[LIB] #55 0x000055a75385af5b (/usr/bin/python3.10+0x25df5b)
[LIB] #56 0x000055a753861e55 (/usr/bin/python3.10+0x264e55)
[LIB] #57 0x000055a753861338 _PyRun_SimpleFileObject (/usr/bin/python3.10+0x264338)
[LIB] #58 0x000055a753861033 _PyRun_AnyFileObject (/usr/bin/python3.10+0x264033)
[LIB] #59 0x000055a7538522de Py_RunMain (/usr/bin/python3.10+0x2552de)
[LIB] #60 0x000055a75382832d Py_BytesMain (/usr/bin/python3.10+0x22b32d)
[LIB] #61 0x00007f0b26fa3d90 (/lib/x86_64-linux-gnu/libc.so.6+0x29d90)
[LIB] #62 0x00007f0b26fa3e40 __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x29e40)
[LIB] #63 0x000055a753828225 _start (/usr/bin/python3.10+0x22b225)
[LIB] 
[LIB] <unknown>:0: remark: loc("LLVMDialectModule"): Found LLVM function: __quantum__qis__Expval
[LIB] 
[LIB] <unknown>:0: note: loc("LLVMDialectModule"): diagnostic emitted with trace:
[LIB]  #0 0x00007f0ad334dfd3 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x8b4dfd3)
[LIB]  #1 0x00007f0ad118f549 emitDiag(mlir::Location, mlir::DiagnosticSeverity, llvm::Twine const&) Diagnostics.cpp:0:0
[LIB]  #2 0x00007f0ad118f65e mlir::emitRemark(mlir::Location) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x698f65e)
[LIB]  #3 0x00007f0acdc80da2 getJITFunction(mlir::MLIRContext*, llvm::Module&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x3480da2)
[LIB]  #4 0x00007f0acdc8531a QuantumDriverMain(catalyst::driver::CompilerOptions const&, catalyst::driver::CompilerOutput&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x348531a)
[LIB]  #5 0x00007f0acdc7db76 void pybind11::cpp_function::initialize<pybind11_init_compiler_driver(pybind11::module_&)::$_8, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>>, char const*, char const*, char const*, bool, bool, pybind11::list, bool, pybind11::name, pybind11::scope, pybind11::sibling, pybind11::arg, pybind11::arg, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v>(pybind11_init_compiler_driver(pybind11::module_&)::$_8&&, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>> (*)(char const*, char const*, char const*, bool, bool, pybind11::list, bool), pybind11::name const&, pybind11::scope const&, pybind11::sibling const&, pybind11::arg const&, pybind11::arg const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&)::'lambda'(pybind11::detail::function_call&)::__invoke(pybind11::detail::function_call&) PyCompilerDriver.cpp:0:0
[LIB]  #6 0x00007f0acdc6f226 pybind11::cpp_function::dispatcher(_object*, _object*, _object*) PyCompilerDriver.cpp:0:0
[LIB]  #7 0x000055a75375999e (/usr/bin/python3.10+0x15c99e)
[LIB]  #8 0x000055a7537504ab _PyObject_MakeTpCall (/usr/bin/python3.10+0x1534ab)
[LIB]  #9 0x000055a753749683 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14c683)
[LIB] #10 0x000055a753767d7e (/usr/bin/python3.10+0x16ad7e)
[LIB] #11 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #12 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #13 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #14 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #15 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #16 0x000055a75374f634 _PyObject_FastCallDictTstate (/usr/bin/python3.10+0x152634)
[LIB] #17 0x000055a753763e94 (/usr/bin/python3.10+0x166e94)
[LIB] #18 0x000055a75375044c _PyObject_MakeTpCall (/usr/bin/python3.10+0x15344c)
[LIB] #19 0x000055a753748815 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14b815)
[LIB] #20 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #21 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #22 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #23 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #24 0x000055a75383b04d (/usr/bin/python3.10+0x23e04d)
[LIB] #25 0x000055a75375a449 (/usr/bin/python3.10+0x15d449)
[LIB] #26 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #27 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #28 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #29 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #30 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #31 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #32 0x000055a753856ecf (/usr/bin/python3.10+0x259ecf)
[LIB] #33 0x000055a75376571a (/usr/bin/python3.10+0x16871a)
[LIB] #34 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #35 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #36 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #37 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #38 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #39 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #40 0x000055a753743adf _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x146adf)
[LIB] #41 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #42 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #43 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #44 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #45 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #46 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #47 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #48 0x000055a7537688e2 PyObject_Call (/usr/bin/python3.10+0x16b8e2)
[LIB] #49 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #50 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #51 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #52 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #53 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #54 0x000055a753862108 (/usr/bin/python3.10+0x265108)
[LIB] #55 0x000055a75385af5b (/usr/bin/python3.10+0x25df5b)
[LIB] #56 0x000055a753861e55 (/usr/bin/python3.10+0x264e55)
[LIB] #57 0x000055a753861338 _PyRun_SimpleFileObject (/usr/bin/python3.10+0x264338)
[LIB] #58 0x000055a753861033 _PyRun_AnyFileObject (/usr/bin/python3.10+0x264033)
[LIB] #59 0x000055a7538522de Py_RunMain (/usr/bin/python3.10+0x2552de)
[LIB] #60 0x000055a75382832d Py_BytesMain (/usr/bin/python3.10+0x22b32d)
[LIB] #61 0x00007f0b26fa3d90 (/lib/x86_64-linux-gnu/libc.so.6+0x29d90)
[LIB] #62 0x00007f0b26fa3e40 __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x29e40)
[LIB] #63 0x000055a753828225 _start (/usr/bin/python3.10+0x22b225)
[LIB] 
[LIB] <unknown>:0: remark: loc("LLVMDialectModule"): Found LLVM function: __quantum__qis__NamedObs
[LIB] 
[LIB] <unknown>:0: note: loc("LLVMDialectModule"): diagnostic emitted with trace:
[LIB]  #0 0x00007f0ad334dfd3 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x8b4dfd3)
[LIB]  #1 0x00007f0ad118f549 emitDiag(mlir::Location, mlir::DiagnosticSeverity, llvm::Twine const&) Diagnostics.cpp:0:0
[LIB]  #2 0x00007f0ad118f65e mlir::emitRemark(mlir::Location) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x698f65e)
[LIB]  #3 0x00007f0acdc80da2 getJITFunction(mlir::MLIRContext*, llvm::Module&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x3480da2)
[LIB]  #4 0x00007f0acdc8531a QuantumDriverMain(catalyst::driver::CompilerOptions const&, catalyst::driver::CompilerOutput&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x348531a)
[LIB]  #5 0x00007f0acdc7db76 void pybind11::cpp_function::initialize<pybind11_init_compiler_driver(pybind11::module_&)::$_8, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>>, char const*, char const*, char const*, bool, bool, pybind11::list, bool, pybind11::name, pybind11::scope, pybind11::sibling, pybind11::arg, pybind11::arg, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v>(pybind11_init_compiler_driver(pybind11::module_&)::$_8&&, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>> (*)(char const*, char const*, char const*, bool, bool, pybind11::list, bool), pybind11::name const&, pybind11::scope const&, pybind11::sibling const&, pybind11::arg const&, pybind11::arg const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&)::'lambda'(pybind11::detail::function_call&)::__invoke(pybind11::detail::function_call&) PyCompilerDriver.cpp:0:0
[LIB]  #6 0x00007f0acdc6f226 pybind11::cpp_function::dispatcher(_object*, _object*, _object*) PyCompilerDriver.cpp:0:0
[LIB]  #7 0x000055a75375999e (/usr/bin/python3.10+0x15c99e)
[LIB]  #8 0x000055a7537504ab _PyObject_MakeTpCall (/usr/bin/python3.10+0x1534ab)
[LIB]  #9 0x000055a753749683 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14c683)
[LIB] #10 0x000055a753767d7e (/usr/bin/python3.10+0x16ad7e)
[LIB] #11 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #12 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #13 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #14 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #15 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #16 0x000055a75374f634 _PyObject_FastCallDictTstate (/usr/bin/python3.10+0x152634)
[LIB] #17 0x000055a753763e94 (/usr/bin/python3.10+0x166e94)
[LIB] #18 0x000055a75375044c _PyObject_MakeTpCall (/usr/bin/python3.10+0x15344c)
[LIB] #19 0x000055a753748815 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14b815)
[LIB] #20 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #21 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #22 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #23 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #24 0x000055a75383b04d (/usr/bin/python3.10+0x23e04d)
[LIB] #25 0x000055a75375a449 (/usr/bin/python3.10+0x15d449)
[LIB] #26 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #27 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #28 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #29 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #30 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #31 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #32 0x000055a753856ecf (/usr/bin/python3.10+0x259ecf)
[LIB] #33 0x000055a75376571a (/usr/bin/python3.10+0x16871a)
[LIB] #34 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #35 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #36 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #37 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #38 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #39 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #40 0x000055a753743adf _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x146adf)
[LIB] #41 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #42 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #43 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #44 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #45 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #46 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #47 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #48 0x000055a7537688e2 PyObject_Call (/usr/bin/python3.10+0x16b8e2)
[LIB] #49 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #50 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #51 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #52 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #53 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #54 0x000055a753862108 (/usr/bin/python3.10+0x265108)
[LIB] #55 0x000055a75385af5b (/usr/bin/python3.10+0x25df5b)
[LIB] #56 0x000055a753861e55 (/usr/bin/python3.10+0x264e55)
[LIB] #57 0x000055a753861338 _PyRun_SimpleFileObject (/usr/bin/python3.10+0x264338)
[LIB] #58 0x000055a753861033 _PyRun_AnyFileObject (/usr/bin/python3.10+0x264033)
[LIB] #59 0x000055a7538522de Py_RunMain (/usr/bin/python3.10+0x2552de)
[LIB] #60 0x000055a75382832d Py_BytesMain (/usr/bin/python3.10+0x22b32d)
[LIB] #61 0x00007f0b26fa3d90 (/lib/x86_64-linux-gnu/libc.so.6+0x29d90)
[LIB] #62 0x00007f0b26fa3e40 __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x29e40)
[LIB] #63 0x000055a753828225 _start (/usr/bin/python3.10+0x22b225)
[LIB] 
[LIB] <unknown>:0: remark: loc("LLVMDialectModule"): Found LLVM function: __quantum__qis__RY
[LIB] 
[LIB] <unknown>:0: note: loc("LLVMDialectModule"): diagnostic emitted with trace:
[LIB]  #0 0x00007f0ad334dfd3 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x8b4dfd3)
[LIB]  #1 0x00007f0ad118f549 emitDiag(mlir::Location, mlir::DiagnosticSeverity, llvm::Twine const&) Diagnostics.cpp:0:0
[LIB]  #2 0x00007f0ad118f65e mlir::emitRemark(mlir::Location) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x698f65e)
[LIB]  #3 0x00007f0acdc80da2 getJITFunction(mlir::MLIRContext*, llvm::Module&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x3480da2)
[LIB]  #4 0x00007f0acdc8531a QuantumDriverMain(catalyst::driver::CompilerOptions const&, catalyst::driver::CompilerOutput&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x348531a)
[LIB]  #5 0x00007f0acdc7db76 void pybind11::cpp_function::initialize<pybind11_init_compiler_driver(pybind11::module_&)::$_8, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>>, char const*, char const*, char const*, bool, bool, pybind11::list, bool, pybind11::name, pybind11::scope, pybind11::sibling, pybind11::arg, pybind11::arg, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v>(pybind11_init_compiler_driver(pybind11::module_&)::$_8&&, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>> (*)(char const*, char const*, char const*, bool, bool, pybind11::list, bool), pybind11::name const&, pybind11::scope const&, pybind11::sibling const&, pybind11::arg const&, pybind11::arg const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&)::'lambda'(pybind11::detail::function_call&)::__invoke(pybind11::detail::function_call&) PyCompilerDriver.cpp:0:0
[LIB]  #6 0x00007f0acdc6f226 pybind11::cpp_function::dispatcher(_object*, _object*, _object*) PyCompilerDriver.cpp:0:0
[LIB]  #7 0x000055a75375999e (/usr/bin/python3.10+0x15c99e)
[LIB]  #8 0x000055a7537504ab _PyObject_MakeTpCall (/usr/bin/python3.10+0x1534ab)
[LIB]  #9 0x000055a753749683 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14c683)
[LIB] #10 0x000055a753767d7e (/usr/bin/python3.10+0x16ad7e)
[LIB] #11 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #12 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #13 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #14 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #15 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #16 0x000055a75374f634 _PyObject_FastCallDictTstate (/usr/bin/python3.10+0x152634)
[LIB] #17 0x000055a753763e94 (/usr/bin/python3.10+0x166e94)
[LIB] #18 0x000055a75375044c _PyObject_MakeTpCall (/usr/bin/python3.10+0x15344c)
[LIB] #19 0x000055a753748815 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14b815)
[LIB] #20 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #21 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #22 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #23 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #24 0x000055a75383b04d (/usr/bin/python3.10+0x23e04d)
[LIB] #25 0x000055a75375a449 (/usr/bin/python3.10+0x15d449)
[LIB] #26 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #27 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #28 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #29 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #30 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #31 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #32 0x000055a753856ecf (/usr/bin/python3.10+0x259ecf)
[LIB] #33 0x000055a75376571a (/usr/bin/python3.10+0x16871a)
[LIB] #34 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #35 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #36 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #37 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #38 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #39 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #40 0x000055a753743adf _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x146adf)
[LIB] #41 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #42 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #43 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #44 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #45 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #46 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #47 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #48 0x000055a7537688e2 PyObject_Call (/usr/bin/python3.10+0x16b8e2)
[LIB] #49 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #50 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #51 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #52 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #53 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #54 0x000055a753862108 (/usr/bin/python3.10+0x265108)
[LIB] #55 0x000055a75385af5b (/usr/bin/python3.10+0x25df5b)
[LIB] #56 0x000055a753861e55 (/usr/bin/python3.10+0x264e55)
[LIB] #57 0x000055a753861338 _PyRun_SimpleFileObject (/usr/bin/python3.10+0x264338)
[LIB] #58 0x000055a753861033 _PyRun_AnyFileObject (/usr/bin/python3.10+0x264033)
[LIB] #59 0x000055a7538522de Py_RunMain (/usr/bin/python3.10+0x2552de)
[LIB] #60 0x000055a75382832d Py_BytesMain (/usr/bin/python3.10+0x22b32d)
[LIB] #61 0x00007f0b26fa3d90 (/lib/x86_64-linux-gnu/libc.so.6+0x29d90)
[LIB] #62 0x00007f0b26fa3e40 __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x29e40)
[LIB] #63 0x000055a753828225 _start (/usr/bin/python3.10+0x22b225)
[LIB] 
[LIB] <unknown>:0: remark: loc("LLVMDialectModule"): Found LLVM function: __quantum__rt__array_get_element_ptr_1d
[LIB] 
[LIB] <unknown>:0: note: loc("LLVMDialectModule"): diagnostic emitted with trace:
[LIB]  #0 0x00007f0ad334dfd3 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x8b4dfd3)
[LIB]  #1 0x00007f0ad118f549 emitDiag(mlir::Location, mlir::DiagnosticSeverity, llvm::Twine const&) Diagnostics.cpp:0:0
[LIB]  #2 0x00007f0ad118f65e mlir::emitRemark(mlir::Location) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x698f65e)
[LIB]  #3 0x00007f0acdc80da2 getJITFunction(mlir::MLIRContext*, llvm::Module&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x3480da2)
[LIB]  #4 0x00007f0acdc8531a QuantumDriverMain(catalyst::driver::CompilerOptions const&, catalyst::driver::CompilerOutput&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x348531a)
[LIB]  #5 0x00007f0acdc7db76 void pybind11::cpp_function::initialize<pybind11_init_compiler_driver(pybind11::module_&)::$_8, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>>, char const*, char const*, char const*, bool, bool, pybind11::list, bool, pybind11::name, pybind11::scope, pybind11::sibling, pybind11::arg, pybind11::arg, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v>(pybind11_init_compiler_driver(pybind11::module_&)::$_8&&, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>> (*)(char const*, char const*, char const*, bool, bool, pybind11::list, bool), pybind11::name const&, pybind11::scope const&, pybind11::sibling const&, pybind11::arg const&, pybind11::arg const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&)::'lambda'(pybind11::detail::function_call&)::__invoke(pybind11::detail::function_call&) PyCompilerDriver.cpp:0:0
[LIB]  #6 0x00007f0acdc6f226 pybind11::cpp_function::dispatcher(_object*, _object*, _object*) PyCompilerDriver.cpp:0:0
[LIB]  #7 0x000055a75375999e (/usr/bin/python3.10+0x15c99e)
[LIB]  #8 0x000055a7537504ab _PyObject_MakeTpCall (/usr/bin/python3.10+0x1534ab)
[LIB]  #9 0x000055a753749683 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14c683)
[LIB] #10 0x000055a753767d7e (/usr/bin/python3.10+0x16ad7e)
[LIB] #11 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #12 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #13 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #14 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #15 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #16 0x000055a75374f634 _PyObject_FastCallDictTstate (/usr/bin/python3.10+0x152634)
[LIB] #17 0x000055a753763e94 (/usr/bin/python3.10+0x166e94)
[LIB] #18 0x000055a75375044c _PyObject_MakeTpCall (/usr/bin/python3.10+0x15344c)
[LIB] #19 0x000055a753748815 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14b815)
[LIB] #20 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #21 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #22 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #23 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #24 0x000055a75383b04d (/usr/bin/python3.10+0x23e04d)
[LIB] #25 0x000055a75375a449 (/usr/bin/python3.10+0x15d449)
[LIB] #26 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #27 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #28 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #29 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #30 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #31 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #32 0x000055a753856ecf (/usr/bin/python3.10+0x259ecf)
[LIB] #33 0x000055a75376571a (/usr/bin/python3.10+0x16871a)
[LIB] #34 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #35 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #36 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #37 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #38 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #39 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #40 0x000055a753743adf _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x146adf)
[LIB] #41 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #42 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #43 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #44 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #45 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #46 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #47 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #48 0x000055a7537688e2 PyObject_Call (/usr/bin/python3.10+0x16b8e2)
[LIB] #49 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #50 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #51 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #52 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #53 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #54 0x000055a753862108 (/usr/bin/python3.10+0x265108)
[LIB] #55 0x000055a75385af5b (/usr/bin/python3.10+0x25df5b)
[LIB] #56 0x000055a753861e55 (/usr/bin/python3.10+0x264e55)
[LIB] #57 0x000055a753861338 _PyRun_SimpleFileObject (/usr/bin/python3.10+0x264338)
[LIB] #58 0x000055a753861033 _PyRun_AnyFileObject (/usr/bin/python3.10+0x264033)
[LIB] #59 0x000055a7538522de Py_RunMain (/usr/bin/python3.10+0x2552de)
[LIB] #60 0x000055a75382832d Py_BytesMain (/usr/bin/python3.10+0x22b32d)
[LIB] #61 0x00007f0b26fa3d90 (/lib/x86_64-linux-gnu/libc.so.6+0x29d90)
[LIB] #62 0x00007f0b26fa3e40 __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x29e40)
[LIB] #63 0x000055a753828225 _start (/usr/bin/python3.10+0x22b225)
[LIB] 
[LIB] <unknown>:0: remark: loc("LLVMDialectModule"): Found LLVM function: __quantum__rt__qubit_allocate_array
[LIB] 
[LIB] <unknown>:0: note: loc("LLVMDialectModule"): diagnostic emitted with trace:
[LIB]  #0 0x00007f0ad334dfd3 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x8b4dfd3)
[LIB]  #1 0x00007f0ad118f549 emitDiag(mlir::Location, mlir::DiagnosticSeverity, llvm::Twine const&) Diagnostics.cpp:0:0
[LIB]  #2 0x00007f0ad118f65e mlir::emitRemark(mlir::Location) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x698f65e)
[LIB]  #3 0x00007f0acdc80da2 getJITFunction(mlir::MLIRContext*, llvm::Module&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x3480da2)
[LIB]  #4 0x00007f0acdc8531a QuantumDriverMain(catalyst::driver::CompilerOptions const&, catalyst::driver::CompilerOutput&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x348531a)
[LIB]  #5 0x00007f0acdc7db76 void pybind11::cpp_function::initialize<pybind11_init_compiler_driver(pybind11::module_&)::$_8, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>>, char const*, char const*, char const*, bool, bool, pybind11::list, bool, pybind11::name, pybind11::scope, pybind11::sibling, pybind11::arg, pybind11::arg, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v>(pybind11_init_compiler_driver(pybind11::module_&)::$_8&&, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>> (*)(char const*, char const*, char const*, bool, bool, pybind11::list, bool), pybind11::name const&, pybind11::scope const&, pybind11::sibling const&, pybind11::arg const&, pybind11::arg const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&)::'lambda'(pybind11::detail::function_call&)::__invoke(pybind11::detail::function_call&) PyCompilerDriver.cpp:0:0
[LIB]  #6 0x00007f0acdc6f226 pybind11::cpp_function::dispatcher(_object*, _object*, _object*) PyCompilerDriver.cpp:0:0
[LIB]  #7 0x000055a75375999e (/usr/bin/python3.10+0x15c99e)
[LIB]  #8 0x000055a7537504ab _PyObject_MakeTpCall (/usr/bin/python3.10+0x1534ab)
[LIB]  #9 0x000055a753749683 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14c683)
[LIB] #10 0x000055a753767d7e (/usr/bin/python3.10+0x16ad7e)
[LIB] #11 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #12 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #13 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #14 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #15 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #16 0x000055a75374f634 _PyObject_FastCallDictTstate (/usr/bin/python3.10+0x152634)
[LIB] #17 0x000055a753763e94 (/usr/bin/python3.10+0x166e94)
[LIB] #18 0x000055a75375044c _PyObject_MakeTpCall (/usr/bin/python3.10+0x15344c)
[LIB] #19 0x000055a753748815 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14b815)
[LIB] #20 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #21 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #22 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #23 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #24 0x000055a75383b04d (/usr/bin/python3.10+0x23e04d)
[LIB] #25 0x000055a75375a449 (/usr/bin/python3.10+0x15d449)
[LIB] #26 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #27 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #28 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #29 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #30 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #31 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #32 0x000055a753856ecf (/usr/bin/python3.10+0x259ecf)
[LIB] #33 0x000055a75376571a (/usr/bin/python3.10+0x16871a)
[LIB] #34 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #35 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #36 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #37 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #38 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #39 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #40 0x000055a753743adf _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x146adf)
[LIB] #41 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #42 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #43 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #44 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #45 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #46 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #47 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #48 0x000055a7537688e2 PyObject_Call (/usr/bin/python3.10+0x16b8e2)
[LIB] #49 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #50 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #51 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #52 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #53 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #54 0x000055a753862108 (/usr/bin/python3.10+0x265108)
[LIB] #55 0x000055a75385af5b (/usr/bin/python3.10+0x25df5b)
[LIB] #56 0x000055a753861e55 (/usr/bin/python3.10+0x264e55)
[LIB] #57 0x000055a753861338 _PyRun_SimpleFileObject (/usr/bin/python3.10+0x264338)
[LIB] #58 0x000055a753861033 _PyRun_AnyFileObject (/usr/bin/python3.10+0x264033)
[LIB] #59 0x000055a7538522de Py_RunMain (/usr/bin/python3.10+0x2552de)
[LIB] #60 0x000055a75382832d Py_BytesMain (/usr/bin/python3.10+0x22b32d)
[LIB] #61 0x00007f0b26fa3d90 (/lib/x86_64-linux-gnu/libc.so.6+0x29d90)
[LIB] #62 0x00007f0b26fa3e40 __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x29e40)
[LIB] #63 0x000055a753828225 _start (/usr/bin/python3.10+0x22b225)
[LIB] 
[LIB] <unknown>:0: remark: loc("LLVMDialectModule"): Found LLVM function: __quantum__rt__device
[LIB] 
[LIB] <unknown>:0: note: loc("LLVMDialectModule"): diagnostic emitted with trace:
[LIB]  #0 0x00007f0ad334dfd3 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x8b4dfd3)
[LIB]  #1 0x00007f0ad118f549 emitDiag(mlir::Location, mlir::DiagnosticSeverity, llvm::Twine const&) Diagnostics.cpp:0:0
[LIB]  #2 0x00007f0ad118f65e mlir::emitRemark(mlir::Location) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x698f65e)
[LIB]  #3 0x00007f0acdc80da2 getJITFunction(mlir::MLIRContext*, llvm::Module&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x3480da2)
[LIB]  #4 0x00007f0acdc8531a QuantumDriverMain(catalyst::driver::CompilerOptions const&, catalyst::driver::CompilerOutput&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x348531a)
[LIB]  #5 0x00007f0acdc7db76 void pybind11::cpp_function::initialize<pybind11_init_compiler_driver(pybind11::module_&)::$_8, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>>, char const*, char const*, char const*, bool, bool, pybind11::list, bool, pybind11::name, pybind11::scope, pybind11::sibling, pybind11::arg, pybind11::arg, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v>(pybind11_init_compiler_driver(pybind11::module_&)::$_8&&, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>> (*)(char const*, char const*, char const*, bool, bool, pybind11::list, bool), pybind11::name const&, pybind11::scope const&, pybind11::sibling const&, pybind11::arg const&, pybind11::arg const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&)::'lambda'(pybind11::detail::function_call&)::__invoke(pybind11::detail::function_call&) PyCompilerDriver.cpp:0:0
[LIB]  #6 0x00007f0acdc6f226 pybind11::cpp_function::dispatcher(_object*, _object*, _object*) PyCompilerDriver.cpp:0:0
[LIB]  #7 0x000055a75375999e (/usr/bin/python3.10+0x15c99e)
[LIB]  #8 0x000055a7537504ab _PyObject_MakeTpCall (/usr/bin/python3.10+0x1534ab)
[LIB]  #9 0x000055a753749683 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14c683)
[LIB] #10 0x000055a753767d7e (/usr/bin/python3.10+0x16ad7e)
[LIB] #11 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #12 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #13 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #14 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #15 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #16 0x000055a75374f634 _PyObject_FastCallDictTstate (/usr/bin/python3.10+0x152634)
[LIB] #17 0x000055a753763e94 (/usr/bin/python3.10+0x166e94)
[LIB] #18 0x000055a75375044c _PyObject_MakeTpCall (/usr/bin/python3.10+0x15344c)
[LIB] #19 0x000055a753748815 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14b815)
[LIB] #20 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #21 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #22 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #23 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #24 0x000055a75383b04d (/usr/bin/python3.10+0x23e04d)
[LIB] #25 0x000055a75375a449 (/usr/bin/python3.10+0x15d449)
[LIB] #26 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #27 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #28 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #29 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #30 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #31 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #32 0x000055a753856ecf (/usr/bin/python3.10+0x259ecf)
[LIB] #33 0x000055a75376571a (/usr/bin/python3.10+0x16871a)
[LIB] #34 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #35 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #36 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #37 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #38 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #39 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #40 0x000055a753743adf _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x146adf)
[LIB] #41 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #42 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #43 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #44 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #45 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #46 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #47 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #48 0x000055a7537688e2 PyObject_Call (/usr/bin/python3.10+0x16b8e2)
[LIB] #49 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #50 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #51 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #52 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #53 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #54 0x000055a753862108 (/usr/bin/python3.10+0x265108)
[LIB] #55 0x000055a75385af5b (/usr/bin/python3.10+0x25df5b)
[LIB] #56 0x000055a753861e55 (/usr/bin/python3.10+0x264e55)
[LIB] #57 0x000055a753861338 _PyRun_SimpleFileObject (/usr/bin/python3.10+0x264338)
[LIB] #58 0x000055a753861033 _PyRun_AnyFileObject (/usr/bin/python3.10+0x264033)
[LIB] #59 0x000055a7538522de Py_RunMain (/usr/bin/python3.10+0x2552de)
[LIB] #60 0x000055a75382832d Py_BytesMain (/usr/bin/python3.10+0x22b32d)
[LIB] #61 0x00007f0b26fa3d90 (/lib/x86_64-linux-gnu/libc.so.6+0x29d90)
[LIB] #62 0x00007f0b26fa3e40 __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x29e40)
[LIB] #63 0x000055a753828225 _start (/usr/bin/python3.10+0x22b225)
[LIB] 
[LIB] <unknown>:0: remark: loc("LLVMDialectModule"): Found LLVM function: _mlir_memref_to_llvm_alloc
[LIB] 
[LIB] <unknown>:0: note: loc("LLVMDialectModule"): diagnostic emitted with trace:
[LIB]  #0 0x00007f0ad334dfd3 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x8b4dfd3)
[LIB]  #1 0x00007f0ad118f549 emitDiag(mlir::Location, mlir::DiagnosticSeverity, llvm::Twine const&) Diagnostics.cpp:0:0
[LIB]  #2 0x00007f0ad118f65e mlir::emitRemark(mlir::Location) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x698f65e)
[LIB]  #3 0x00007f0acdc80da2 getJITFunction(mlir::MLIRContext*, llvm::Module&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x3480da2)
[LIB]  #4 0x00007f0acdc8531a QuantumDriverMain(catalyst::driver::CompilerOptions const&, catalyst::driver::CompilerOutput&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x348531a)
[LIB]  #5 0x00007f0acdc7db76 void pybind11::cpp_function::initialize<pybind11_init_compiler_driver(pybind11::module_&)::$_8, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>>, char const*, char const*, char const*, bool, bool, pybind11::list, bool, pybind11::name, pybind11::scope, pybind11::sibling, pybind11::arg, pybind11::arg, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v>(pybind11_init_compiler_driver(pybind11::module_&)::$_8&&, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>> (*)(char const*, char const*, char const*, bool, bool, pybind11::list, bool), pybind11::name const&, pybind11::scope const&, pybind11::sibling const&, pybind11::arg const&, pybind11::arg const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&)::'lambda'(pybind11::detail::function_call&)::__invoke(pybind11::detail::function_call&) PyCompilerDriver.cpp:0:0
[LIB]  #6 0x00007f0acdc6f226 pybind11::cpp_function::dispatcher(_object*, _object*, _object*) PyCompilerDriver.cpp:0:0
[LIB]  #7 0x000055a75375999e (/usr/bin/python3.10+0x15c99e)
[LIB]  #8 0x000055a7537504ab _PyObject_MakeTpCall (/usr/bin/python3.10+0x1534ab)
[LIB]  #9 0x000055a753749683 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14c683)
[LIB] #10 0x000055a753767d7e (/usr/bin/python3.10+0x16ad7e)
[LIB] #11 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #12 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #13 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #14 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #15 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #16 0x000055a75374f634 _PyObject_FastCallDictTstate (/usr/bin/python3.10+0x152634)
[LIB] #17 0x000055a753763e94 (/usr/bin/python3.10+0x166e94)
[LIB] #18 0x000055a75375044c _PyObject_MakeTpCall (/usr/bin/python3.10+0x15344c)
[LIB] #19 0x000055a753748815 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14b815)
[LIB] #20 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #21 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #22 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #23 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #24 0x000055a75383b04d (/usr/bin/python3.10+0x23e04d)
[LIB] #25 0x000055a75375a449 (/usr/bin/python3.10+0x15d449)
[LIB] #26 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #27 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #28 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #29 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #30 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #31 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #32 0x000055a753856ecf (/usr/bin/python3.10+0x259ecf)
[LIB] #33 0x000055a75376571a (/usr/bin/python3.10+0x16871a)
[LIB] #34 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #35 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #36 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #37 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #38 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #39 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #40 0x000055a753743adf _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x146adf)
[LIB] #41 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #42 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #43 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #44 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #45 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #46 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #47 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #48 0x000055a7537688e2 PyObject_Call (/usr/bin/python3.10+0x16b8e2)
[LIB] #49 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #50 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #51 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #52 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #53 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #54 0x000055a753862108 (/usr/bin/python3.10+0x265108)
[LIB] #55 0x000055a75385af5b (/usr/bin/python3.10+0x25df5b)
[LIB] #56 0x000055a753861e55 (/usr/bin/python3.10+0x264e55)
[LIB] #57 0x000055a753861338 _PyRun_SimpleFileObject (/usr/bin/python3.10+0x264338)
[LIB] #58 0x000055a753861033 _PyRun_AnyFileObject (/usr/bin/python3.10+0x264033)
[LIB] #59 0x000055a7538522de Py_RunMain (/usr/bin/python3.10+0x2552de)
[LIB] #60 0x000055a75382832d Py_BytesMain (/usr/bin/python3.10+0x22b32d)
[LIB] #61 0x00007f0b26fa3d90 (/lib/x86_64-linux-gnu/libc.so.6+0x29d90)
[LIB] #62 0x00007f0b26fa3e40 __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x29e40)
[LIB] #63 0x000055a753828225 _start (/usr/bin/python3.10+0x22b225)
[LIB] 
[LIB] <unknown>:0: remark: loc("LLVMDialectModule"): Found LLVM function: jit_fn
[LIB] 
[LIB] <unknown>:0: note: loc("LLVMDialectModule"): diagnostic emitted with trace:
[LIB]  #0 0x00007f0ad334dfd3 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x8b4dfd3)
[LIB]  #1 0x00007f0ad118f549 emitDiag(mlir::Location, mlir::DiagnosticSeverity, llvm::Twine const&) Diagnostics.cpp:0:0
[LIB]  #2 0x00007f0ad118f65e mlir::emitRemark(mlir::Location) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x698f65e)
[LIB]  #3 0x00007f0acdc80da2 getJITFunction(mlir::MLIRContext*, llvm::Module&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x3480da2)
[LIB]  #4 0x00007f0acdc8531a QuantumDriverMain(catalyst::driver::CompilerOptions const&, catalyst::driver::CompilerOutput&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x348531a)
[LIB]  #5 0x00007f0acdc7db76 void pybind11::cpp_function::initialize<pybind11_init_compiler_driver(pybind11::module_&)::$_8, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>>, char const*, char const*, char const*, bool, bool, pybind11::list, bool, pybind11::name, pybind11::scope, pybind11::sibling, pybind11::arg, pybind11::arg, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v>(pybind11_init_compiler_driver(pybind11::module_&)::$_8&&, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>> (*)(char const*, char const*, char const*, bool, bool, pybind11::list, bool), pybind11::name const&, pybind11::scope const&, pybind11::sibling const&, pybind11::arg const&, pybind11::arg const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&)::'lambda'(pybind11::detail::function_call&)::__invoke(pybind11::detail::function_call&) PyCompilerDriver.cpp:0:0
[LIB]  #6 0x00007f0acdc6f226 pybind11::cpp_function::dispatcher(_object*, _object*, _object*) PyCompilerDriver.cpp:0:0
[LIB]  #7 0x000055a75375999e (/usr/bin/python3.10+0x15c99e)
[LIB]  #8 0x000055a7537504ab _PyObject_MakeTpCall (/usr/bin/python3.10+0x1534ab)
[LIB]  #9 0x000055a753749683 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14c683)
[LIB] #10 0x000055a753767d7e (/usr/bin/python3.10+0x16ad7e)
[LIB] #11 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #12 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #13 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #14 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #15 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #16 0x000055a75374f634 _PyObject_FastCallDictTstate (/usr/bin/python3.10+0x152634)
[LIB] #17 0x000055a753763e94 (/usr/bin/python3.10+0x166e94)
[LIB] #18 0x000055a75375044c _PyObject_MakeTpCall (/usr/bin/python3.10+0x15344c)
[LIB] #19 0x000055a753748815 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14b815)
[LIB] #20 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #21 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #22 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #23 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #24 0x000055a75383b04d (/usr/bin/python3.10+0x23e04d)
[LIB] #25 0x000055a75375a449 (/usr/bin/python3.10+0x15d449)
[LIB] #26 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #27 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #28 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #29 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #30 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #31 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #32 0x000055a753856ecf (/usr/bin/python3.10+0x259ecf)
[LIB] #33 0x000055a75376571a (/usr/bin/python3.10+0x16871a)
[LIB] #34 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #35 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #36 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #37 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #38 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #39 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #40 0x000055a753743adf _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x146adf)
[LIB] #41 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #42 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #43 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #44 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #45 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #46 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #47 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #48 0x000055a7537688e2 PyObject_Call (/usr/bin/python3.10+0x16b8e2)
[LIB] #49 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #50 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #51 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #52 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #53 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #54 0x000055a753862108 (/usr/bin/python3.10+0x265108)
[LIB] #55 0x000055a75385af5b (/usr/bin/python3.10+0x25df5b)
[LIB] #56 0x000055a753861e55 (/usr/bin/python3.10+0x264e55)
[LIB] #57 0x000055a753861338 _PyRun_SimpleFileObject (/usr/bin/python3.10+0x264338)
[LIB] #58 0x000055a753861033 _PyRun_AnyFileObject (/usr/bin/python3.10+0x264033)
[LIB] #59 0x000055a7538522de Py_RunMain (/usr/bin/python3.10+0x2552de)
[LIB] #60 0x000055a75382832d Py_BytesMain (/usr/bin/python3.10+0x22b32d)
[LIB] #61 0x00007f0b26fa3d90 (/lib/x86_64-linux-gnu/libc.so.6+0x29d90)
[LIB] #62 0x00007f0b26fa3e40 __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x29e40)
[LIB] #63 0x000055a753828225 _start (/usr/bin/python3.10+0x22b225)
[LIB] 
[LIB] <unknown>:0: remark: loc("LLVMDialectModule"): Found LLVM function: _catalyst_pyface_jit_fn
[LIB] 
[LIB] <unknown>:0: note: loc("LLVMDialectModule"): diagnostic emitted with trace:
[LIB]  #0 0x00007f0ad334dfd3 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x8b4dfd3)
[LIB]  #1 0x00007f0ad118f549 emitDiag(mlir::Location, mlir::DiagnosticSeverity, llvm::Twine const&) Diagnostics.cpp:0:0
[LIB]  #2 0x00007f0ad118f65e mlir::emitRemark(mlir::Location) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x698f65e)
[LIB]  #3 0x00007f0acdc80da2 getJITFunction(mlir::MLIRContext*, llvm::Module&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x3480da2)
[LIB]  #4 0x00007f0acdc8531a QuantumDriverMain(catalyst::driver::CompilerOptions const&, catalyst::driver::CompilerOutput&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x348531a)
[LIB]  #5 0x00007f0acdc7db76 void pybind11::cpp_function::initialize<pybind11_init_compiler_driver(pybind11::module_&)::$_8, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>>, char const*, char const*, char const*, bool, bool, pybind11::list, bool, pybind11::name, pybind11::scope, pybind11::sibling, pybind11::arg, pybind11::arg, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v>(pybind11_init_compiler_driver(pybind11::module_&)::$_8&&, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>> (*)(char const*, char const*, char const*, bool, bool, pybind11::list, bool), pybind11::name const&, pybind11::scope const&, pybind11::sibling const&, pybind11::arg const&, pybind11::arg const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&)::'lambda'(pybind11::detail::function_call&)::__invoke(pybind11::detail::function_call&) PyCompilerDriver.cpp:0:0
[LIB]  #6 0x00007f0acdc6f226 pybind11::cpp_function::dispatcher(_object*, _object*, _object*) PyCompilerDriver.cpp:0:0
[LIB]  #7 0x000055a75375999e (/usr/bin/python3.10+0x15c99e)
[LIB]  #8 0x000055a7537504ab _PyObject_MakeTpCall (/usr/bin/python3.10+0x1534ab)
[LIB]  #9 0x000055a753749683 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14c683)
[LIB] #10 0x000055a753767d7e (/usr/bin/python3.10+0x16ad7e)
[LIB] #11 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #12 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #13 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #14 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #15 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #16 0x000055a75374f634 _PyObject_FastCallDictTstate (/usr/bin/python3.10+0x152634)
[LIB] #17 0x000055a753763e94 (/usr/bin/python3.10+0x166e94)
[LIB] #18 0x000055a75375044c _PyObject_MakeTpCall (/usr/bin/python3.10+0x15344c)
[LIB] #19 0x000055a753748815 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14b815)
[LIB] #20 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #21 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #22 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #23 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #24 0x000055a75383b04d (/usr/bin/python3.10+0x23e04d)
[LIB] #25 0x000055a75375a449 (/usr/bin/python3.10+0x15d449)
[LIB] #26 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #27 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #28 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #29 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #30 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #31 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #32 0x000055a753856ecf (/usr/bin/python3.10+0x259ecf)
[LIB] #33 0x000055a75376571a (/usr/bin/python3.10+0x16871a)
[LIB] #34 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #35 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #36 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #37 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #38 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #39 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #40 0x000055a753743adf _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x146adf)
[LIB] #41 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #42 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #43 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #44 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #45 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #46 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #47 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #48 0x000055a7537688e2 PyObject_Call (/usr/bin/python3.10+0x16b8e2)
[LIB] #49 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #50 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #51 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #52 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #53 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #54 0x000055a753862108 (/usr/bin/python3.10+0x265108)
[LIB] #55 0x000055a75385af5b (/usr/bin/python3.10+0x25df5b)
[LIB] #56 0x000055a753861e55 (/usr/bin/python3.10+0x264e55)
[LIB] #57 0x000055a753861338 _PyRun_SimpleFileObject (/usr/bin/python3.10+0x264338)
[LIB] #58 0x000055a753861033 _PyRun_AnyFileObject (/usr/bin/python3.10+0x264033)
[LIB] #59 0x000055a7538522de Py_RunMain (/usr/bin/python3.10+0x2552de)
[LIB] #60 0x000055a75382832d Py_BytesMain (/usr/bin/python3.10+0x22b32d)
[LIB] #61 0x00007f0b26fa3d90 (/lib/x86_64-linux-gnu/libc.so.6+0x29d90)
[LIB] #62 0x00007f0b26fa3e40 __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x29e40)
[LIB] #63 0x000055a753828225 _start (/usr/bin/python3.10+0x22b225)
[LIB] 
[LIB] <unknown>:0: remark: loc("LLVMDialectModule"): Found LLVM function: _catalyst_ciface_jit_fn
[LIB] 
[LIB] <unknown>:0: note: loc("LLVMDialectModule"): diagnostic emitted with trace:
[LIB]  #0 0x00007f0ad334dfd3 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x8b4dfd3)
[LIB]  #1 0x00007f0ad118f549 emitDiag(mlir::Location, mlir::DiagnosticSeverity, llvm::Twine const&) Diagnostics.cpp:0:0
[LIB]  #2 0x00007f0ad118f65e mlir::emitRemark(mlir::Location) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x698f65e)
[LIB]  #3 0x00007f0acdc80da2 getJITFunction(mlir::MLIRContext*, llvm::Module&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x3480da2)
[LIB]  #4 0x00007f0acdc8531a QuantumDriverMain(catalyst::driver::CompilerOptions const&, catalyst::driver::CompilerOutput&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x348531a)
[LIB]  #5 0x00007f0acdc7db76 void pybind11::cpp_function::initialize<pybind11_init_compiler_driver(pybind11::module_&)::$_8, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>>, char const*, char const*, char const*, bool, bool, pybind11::list, bool, pybind11::name, pybind11::scope, pybind11::sibling, pybind11::arg, pybind11::arg, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v>(pybind11_init_compiler_driver(pybind11::module_&)::$_8&&, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>> (*)(char const*, char const*, char const*, bool, bool, pybind11::list, bool), pybind11::name const&, pybind11::scope const&, pybind11::sibling const&, pybind11::arg const&, pybind11::arg const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&)::'lambda'(pybind11::detail::function_call&)::__invoke(pybind11::detail::function_call&) PyCompilerDriver.cpp:0:0
[LIB]  #6 0x00007f0acdc6f226 pybind11::cpp_function::dispatcher(_object*, _object*, _object*) PyCompilerDriver.cpp:0:0
[LIB]  #7 0x000055a75375999e (/usr/bin/python3.10+0x15c99e)
[LIB]  #8 0x000055a7537504ab _PyObject_MakeTpCall (/usr/bin/python3.10+0x1534ab)
[LIB]  #9 0x000055a753749683 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14c683)
[LIB] #10 0x000055a753767d7e (/usr/bin/python3.10+0x16ad7e)
[LIB] #11 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #12 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #13 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #14 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #15 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #16 0x000055a75374f634 _PyObject_FastCallDictTstate (/usr/bin/python3.10+0x152634)
[LIB] #17 0x000055a753763e94 (/usr/bin/python3.10+0x166e94)
[LIB] #18 0x000055a75375044c _PyObject_MakeTpCall (/usr/bin/python3.10+0x15344c)
[LIB] #19 0x000055a753748815 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14b815)
[LIB] #20 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #21 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #22 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #23 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #24 0x000055a75383b04d (/usr/bin/python3.10+0x23e04d)
[LIB] #25 0x000055a75375a449 (/usr/bin/python3.10+0x15d449)
[LIB] #26 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #27 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #28 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #29 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #30 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #31 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #32 0x000055a753856ecf (/usr/bin/python3.10+0x259ecf)
[LIB] #33 0x000055a75376571a (/usr/bin/python3.10+0x16871a)
[LIB] #34 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #35 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #36 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #37 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #38 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #39 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #40 0x000055a753743adf _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x146adf)
[LIB] #41 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #42 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #43 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #44 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #45 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #46 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #47 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #48 0x000055a7537688e2 PyObject_Call (/usr/bin/python3.10+0x16b8e2)
[LIB] #49 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #50 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #51 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #52 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #53 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #54 0x000055a753862108 (/usr/bin/python3.10+0x265108)
[LIB] #55 0x000055a75385af5b (/usr/bin/python3.10+0x25df5b)
[LIB] #56 0x000055a753861e55 (/usr/bin/python3.10+0x264e55)
[LIB] #57 0x000055a753861338 _PyRun_SimpleFileObject (/usr/bin/python3.10+0x264338)
[LIB] #58 0x000055a753861033 _PyRun_AnyFileObject (/usr/bin/python3.10+0x264033)
[LIB] #59 0x000055a7538522de Py_RunMain (/usr/bin/python3.10+0x2552de)
[LIB] #60 0x000055a75382832d Py_BytesMain (/usr/bin/python3.10+0x22b32d)
[LIB] #61 0x00007f0b26fa3d90 (/lib/x86_64-linux-gnu/libc.so.6+0x29d90)
[LIB] #62 0x00007f0b26fa3e40 __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x29e40)
[LIB] #63 0x000055a753828225 _start (/usr/bin/python3.10+0x22b225)
[LIB] 
[LIB] <unknown>:0: remark: loc("LLVMDialectModule"): Found LLVM function: setup
[LIB] 
[LIB] <unknown>:0: note: loc("LLVMDialectModule"): diagnostic emitted with trace:
[LIB]  #0 0x00007f0ad334dfd3 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x8b4dfd3)
[LIB]  #1 0x00007f0ad118f549 emitDiag(mlir::Location, mlir::DiagnosticSeverity, llvm::Twine const&) Diagnostics.cpp:0:0
[LIB]  #2 0x00007f0ad118f65e mlir::emitRemark(mlir::Location) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x698f65e)
[LIB]  #3 0x00007f0acdc80da2 getJITFunction(mlir::MLIRContext*, llvm::Module&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x3480da2)
[LIB]  #4 0x00007f0acdc8531a QuantumDriverMain(catalyst::driver::CompilerOptions const&, catalyst::driver::CompilerOutput&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x348531a)
[LIB]  #5 0x00007f0acdc7db76 void pybind11::cpp_function::initialize<pybind11_init_compiler_driver(pybind11::module_&)::$_8, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>>, char const*, char const*, char const*, bool, bool, pybind11::list, bool, pybind11::name, pybind11::scope, pybind11::sibling, pybind11::arg, pybind11::arg, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v>(pybind11_init_compiler_driver(pybind11::module_&)::$_8&&, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>> (*)(char const*, char const*, char const*, bool, bool, pybind11::list, bool), pybind11::name const&, pybind11::scope const&, pybind11::sibling const&, pybind11::arg const&, pybind11::arg const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&)::'lambda'(pybind11::detail::function_call&)::__invoke(pybind11::detail::function_call&) PyCompilerDriver.cpp:0:0
[LIB]  #6 0x00007f0acdc6f226 pybind11::cpp_function::dispatcher(_object*, _object*, _object*) PyCompilerDriver.cpp:0:0
[LIB]  #7 0x000055a75375999e (/usr/bin/python3.10+0x15c99e)
[LIB]  #8 0x000055a7537504ab _PyObject_MakeTpCall (/usr/bin/python3.10+0x1534ab)
[LIB]  #9 0x000055a753749683 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14c683)
[LIB] #10 0x000055a753767d7e (/usr/bin/python3.10+0x16ad7e)
[LIB] #11 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #12 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #13 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #14 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #15 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #16 0x000055a75374f634 _PyObject_FastCallDictTstate (/usr/bin/python3.10+0x152634)
[LIB] #17 0x000055a753763e94 (/usr/bin/python3.10+0x166e94)
[LIB] #18 0x000055a75375044c _PyObject_MakeTpCall (/usr/bin/python3.10+0x15344c)
[LIB] #19 0x000055a753748815 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14b815)
[LIB] #20 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #21 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #22 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #23 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #24 0x000055a75383b04d (/usr/bin/python3.10+0x23e04d)
[LIB] #25 0x000055a75375a449 (/usr/bin/python3.10+0x15d449)
[LIB] #26 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #27 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #28 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #29 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #30 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #31 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #32 0x000055a753856ecf (/usr/bin/python3.10+0x259ecf)
[LIB] #33 0x000055a75376571a (/usr/bin/python3.10+0x16871a)
[LIB] #34 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #35 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #36 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #37 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #38 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #39 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #40 0x000055a753743adf _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x146adf)
[LIB] #41 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #42 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #43 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #44 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #45 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #46 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #47 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #48 0x000055a7537688e2 PyObject_Call (/usr/bin/python3.10+0x16b8e2)
[LIB] #49 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #50 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #51 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #52 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #53 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #54 0x000055a753862108 (/usr/bin/python3.10+0x265108)
[LIB] #55 0x000055a75385af5b (/usr/bin/python3.10+0x25df5b)
[LIB] #56 0x000055a753861e55 (/usr/bin/python3.10+0x264e55)
[LIB] #57 0x000055a753861338 _PyRun_SimpleFileObject (/usr/bin/python3.10+0x264338)
[LIB] #58 0x000055a753861033 _PyRun_AnyFileObject (/usr/bin/python3.10+0x264033)
[LIB] #59 0x000055a7538522de Py_RunMain (/usr/bin/python3.10+0x2552de)
[LIB] #60 0x000055a75382832d Py_BytesMain (/usr/bin/python3.10+0x22b32d)
[LIB] #61 0x00007f0b26fa3d90 (/lib/x86_64-linux-gnu/libc.so.6+0x29d90)
[LIB] #62 0x00007f0b26fa3e40 __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x29e40)
[LIB] #63 0x000055a753828225 _start (/usr/bin/python3.10+0x22b225)
[LIB] 
[LIB] <unknown>:0: remark: loc("LLVMDialectModule"): Found LLVM function: teardown
[LIB] 
[LIB] <unknown>:0: note: loc("LLVMDialectModule"): diagnostic emitted with trace:
[LIB]  #0 0x00007f0ad334dfd3 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x8b4dfd3)
[LIB]  #1 0x00007f0ad118f549 emitDiag(mlir::Location, mlir::DiagnosticSeverity, llvm::Twine const&) Diagnostics.cpp:0:0
[LIB]  #2 0x00007f0ad118f65e mlir::emitRemark(mlir::Location) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x698f65e)
[LIB]  #3 0x00007f0acdc80da2 getJITFunction(mlir::MLIRContext*, llvm::Module&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x3480da2)
[LIB]  #4 0x00007f0acdc8531a QuantumDriverMain(catalyst::driver::CompilerOptions const&, catalyst::driver::CompilerOutput&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x348531a)
[LIB]  #5 0x00007f0acdc7db76 void pybind11::cpp_function::initialize<pybind11_init_compiler_driver(pybind11::module_&)::$_8, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>>, char const*, char const*, char const*, bool, bool, pybind11::list, bool, pybind11::name, pybind11::scope, pybind11::sibling, pybind11::arg, pybind11::arg, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v>(pybind11_init_compiler_driver(pybind11::module_&)::$_8&&, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>> (*)(char const*, char const*, char const*, bool, bool, pybind11::list, bool), pybind11::name const&, pybind11::scope const&, pybind11::sibling const&, pybind11::arg const&, pybind11::arg const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&)::'lambda'(pybind11::detail::function_call&)::__invoke(pybind11::detail::function_call&) PyCompilerDriver.cpp:0:0
[LIB]  #6 0x00007f0acdc6f226 pybind11::cpp_function::dispatcher(_object*, _object*, _object*) PyCompilerDriver.cpp:0:0
[LIB]  #7 0x000055a75375999e (/usr/bin/python3.10+0x15c99e)
[LIB]  #8 0x000055a7537504ab _PyObject_MakeTpCall (/usr/bin/python3.10+0x1534ab)
[LIB]  #9 0x000055a753749683 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14c683)
[LIB] #10 0x000055a753767d7e (/usr/bin/python3.10+0x16ad7e)
[LIB] #11 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #12 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #13 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #14 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #15 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #16 0x000055a75374f634 _PyObject_FastCallDictTstate (/usr/bin/python3.10+0x152634)
[LIB] #17 0x000055a753763e94 (/usr/bin/python3.10+0x166e94)
[LIB] #18 0x000055a75375044c _PyObject_MakeTpCall (/usr/bin/python3.10+0x15344c)
[LIB] #19 0x000055a753748815 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14b815)
[LIB] #20 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #21 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #22 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #23 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #24 0x000055a75383b04d (/usr/bin/python3.10+0x23e04d)
[LIB] #25 0x000055a75375a449 (/usr/bin/python3.10+0x15d449)
[LIB] #26 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #27 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #28 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #29 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #30 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #31 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #32 0x000055a753856ecf (/usr/bin/python3.10+0x259ecf)
[LIB] #33 0x000055a75376571a (/usr/bin/python3.10+0x16871a)
[LIB] #34 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #35 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #36 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #37 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #38 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #39 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #40 0x000055a753743adf _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x146adf)
[LIB] #41 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #42 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #43 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #44 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #45 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #46 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #47 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #48 0x000055a7537688e2 PyObject_Call (/usr/bin/python3.10+0x16b8e2)
[LIB] #49 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #50 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #51 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #52 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #53 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #54 0x000055a753862108 (/usr/bin/python3.10+0x265108)
[LIB] #55 0x000055a75385af5b (/usr/bin/python3.10+0x25df5b)
[LIB] #56 0x000055a753861e55 (/usr/bin/python3.10+0x264e55)
[LIB] #57 0x000055a753861338 _PyRun_SimpleFileObject (/usr/bin/python3.10+0x264338)
[LIB] #58 0x000055a753861033 _PyRun_AnyFileObject (/usr/bin/python3.10+0x264033)
[LIB] #59 0x000055a7538522de Py_RunMain (/usr/bin/python3.10+0x2552de)
[LIB] #60 0x000055a75382832d Py_BytesMain (/usr/bin/python3.10+0x22b32d)
[LIB] #61 0x00007f0b26fa3d90 (/lib/x86_64-linux-gnu/libc.so.6+0x29d90)
[LIB] #62 0x00007f0b26fa3e40 __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x29e40)
[LIB] #63 0x000055a753828225 _start (/usr/bin/python3.10+0x22b225)
[LIB] 
[LIB] <unknown>:0: error: loc("LLVMDialectModule"): Failed to find JIT function
[LIB] <unknown>:0: note: loc("LLVMDialectModule"): diagnostic emitted with trace:
[LIB]  #0 0x00007f0ad334dfd3 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x8b4dfd3)
[LIB]  #1 0x00007f0ad118f549 emitDiag(mlir::Location, mlir::DiagnosticSeverity, llvm::Twine const&) Diagnostics.cpp:0:0
[LIB]  #2 0x00007f0ad118f421 mlir::emitError(mlir::Location, llvm::Twine const&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x698f421)
[LIB]  #3 0x00007f0acdc80ebd getJITFunction(mlir::MLIRContext*, llvm::Module&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x3480ebd)
[LIB]  #4 0x00007f0acdc8531a QuantumDriverMain(catalyst::driver::CompilerOptions const&, catalyst::driver::CompilerOutput&) (/workspace/_build_dialects/python_packages/quantum/mlir_quantum/compiler_driver.so+0x348531a)
[LIB]  #5 0x00007f0acdc7db76 void pybind11::cpp_function::initialize<pybind11_init_compiler_driver(pybind11::module_&)::$_8, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>>, char const*, char const*, char const*, bool, bool, pybind11::list, bool, pybind11::name, pybind11::scope, pybind11::sibling, pybind11::arg, pybind11::arg, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v, pybind11::arg_v>(pybind11_init_compiler_driver(pybind11::module_&)::$_8&&, std::unique_ptr<catalyst::driver::CompilerOutput, std::default_delete<catalyst::driver::CompilerOutput>> (*)(char const*, char const*, char const*, bool, bool, pybind11::list, bool), pybind11::name const&, pybind11::scope const&, pybind11::sibling const&, pybind11::arg const&, pybind11::arg const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&, pybind11::arg_v const&)::'lambda'(pybind11::detail::function_call&)::__invoke(pybind11::detail::function_call&) PyCompilerDriver.cpp:0:0
[LIB]  #6 0x00007f0acdc6f226 pybind11::cpp_function::dispatcher(_object*, _object*, _object*) PyCompilerDriver.cpp:0:0
[LIB]  #7 0x000055a75375999e (/usr/bin/python3.10+0x15c99e)
[LIB]  #8 0x000055a7537504ab _PyObject_MakeTpCall (/usr/bin/python3.10+0x1534ab)
[LIB]  #9 0x000055a753749683 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14c683)
[LIB] #10 0x000055a753767d7e (/usr/bin/python3.10+0x16ad7e)
[LIB] #11 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #12 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #13 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #14 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #15 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #16 0x000055a75374f634 _PyObject_FastCallDictTstate (/usr/bin/python3.10+0x152634)
[LIB] #17 0x000055a753763e94 (/usr/bin/python3.10+0x166e94)
[LIB] #18 0x000055a75375044c _PyObject_MakeTpCall (/usr/bin/python3.10+0x15344c)
[LIB] #19 0x000055a753748815 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x14b815)
[LIB] #20 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #21 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #22 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #23 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #24 0x000055a75383b04d (/usr/bin/python3.10+0x23e04d)
[LIB] #25 0x000055a75375a449 (/usr/bin/python3.10+0x15d449)
[LIB] #26 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #27 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #28 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #29 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #30 0x000055a753744923 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147923)
[LIB] #31 0x000055a753777150 (/usr/bin/python3.10+0x17a150)
[LIB] #32 0x000055a753856ecf (/usr/bin/python3.10+0x259ecf)
[LIB] #33 0x000055a75376571a (/usr/bin/python3.10+0x16871a)
[LIB] #34 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #35 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #36 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #37 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #38 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #39 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #40 0x000055a753743adf _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x146adf)
[LIB] #41 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #42 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #43 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #44 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #45 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #46 0x000055a7537428cb _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x1458cb)
[LIB] #47 0x000055a753767c31 (/usr/bin/python3.10+0x16ac31)
[LIB] #48 0x000055a7537688e2 PyObject_Call (/usr/bin/python3.10+0x16b8e2)
[LIB] #49 0x000055a753744af0 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x147af0)
[LIB] #50 0x000055a75375a1ec _PyFunction_Vectorcall (/usr/bin/python3.10+0x15d1ec)
[LIB] #51 0x000055a753742785 _PyEval_EvalFrameDefault (/usr/bin/python3.10+0x145785)
[LIB] #52 0x000055a75373eed6 (/usr/bin/python3.10+0x141ed6)
[LIB] #53 0x000055a753835366 PyEval_EvalCode (/usr/bin/python3.10+0x238366)
[LIB] #54 0x000055a753862108 (/usr/bin/python3.10+0x265108)
[LIB] #55 0x000055a75385af5b (/usr/bin/python3.10+0x25df5b)
[LIB] #56 0x000055a753861e55 (/usr/bin/python3.10+0x264e55)
[LIB] #57 0x000055a753861338 _PyRun_SimpleFileObject (/usr/bin/python3.10+0x264338)
[LIB] #58 0x000055a753861033 _PyRun_AnyFileObject (/usr/bin/python3.10+0x264033)
[LIB] #59 0x000055a7538522de Py_RunMain (/usr/bin/python3.10+0x2552de)
[LIB] #60 0x000055a75382832d Py_BytesMain (/usr/bin/python3.10+0x22b32d)
[LIB] #61 0x00007f0b26fa3d90 (/lib/x86_64-linux-gnu/libc.so.6+0x29d90)
[LIB] #62 0x00007f0b26fa3e40 __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x29e40)
[LIB] #63 0x000055a753828225 _start (/usr/bin/python3.10+0x22b225)
[LIB] 
[LIB] Unable to infer jit_* function attributes
[SYSTEM] clang -shared -rdynamic -Wl,-rpath,/workspace/_build_runtime/lib -Wl,-rpath,/workspace/_build_llvm/lib -L/workspace/_build_llvm/lib -L/workspace/_build_runtime/lib -lrt_backend -lrt_capi -lpthread -lmlir_c_runner_utils /workspace/src/autograph/fn_5/fn.o -o /workspace/src/autograph/fn_5/fn.so
array(-1.)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment