You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The QIR specification has opaque (typed) pointers such a %Qubit *. These typed pointer may be in use in target backends and their translators.
As of LLVM 17, typed pointers are no longer supported. All pointers must be "opaque", that is they will no longer carry any type annotation as to what the pointed-to object's type is or may be.
CUDA Quantum will need some resolution on this situation in order to remain current with the tip of LLVM/Clang/MLIR development.
The text was updated successfully, but these errors were encountered:
We still need a plan for opaque pointers and QIR. Remaining stuck at an arbitrary LLVM commit will continue to add technical debt the farther we fall behind.
Overview
The QIR specification has opaque (typed) pointers such a
%Qubit *
. These typed pointer may be in use in target backends and their translators.As of LLVM 17, typed pointers are no longer supported. All pointers must be "opaque", that is they will no longer carry any type annotation as to what the pointed-to object's type is or may be.
CUDA Quantum will need some resolution on this situation in order to remain current with the tip of LLVM/Clang/MLIR development.
The text was updated successfully, but these errors were encountered: