-
Notifications
You must be signed in to change notification settings - Fork 13.6k
[NVPTX] Unhandled source type UNREACHABLE executed at NVPTXISelDAGToDAG.cpp:3808! #98033
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Comments
copybara-service bot
pushed a commit
to openxla/xla
that referenced
this issue
Jul 12, 2024
The ptx backend chokes on loads/stores of i1s, see llvm/llvm-project#98033 PiperOrigin-RevId: 651735636
copybara-service bot
pushed a commit
to openxla/xla
that referenced
this issue
Jul 12, 2024
The ptx backend chokes on loads/stores of i1s, see llvm/llvm-project#98033 PiperOrigin-RevId: 651735636
copybara-service bot
pushed a commit
to tensorflow/tensorflow
that referenced
this issue
Jul 12, 2024
The ptx backend chokes on loads/stores of i1s, see llvm/llvm-project#98033 PiperOrigin-RevId: 651735636
Artem-B
pushed a commit
that referenced
this issue
Jul 18, 2024
Currently, an illegal 2-byte load from a 1-byte global variable is being generated. This change instead generates a 1-byte load and zero-extends it to i16 register. This was always the intended behavior of the function. In addition, an i1 ext load of any kind needs to be promoted. A missing setLoadExtAction for ISD::EXTLOAD was causing an "Unhandled source type" unreachable due to an illegal i1 ext load during ISelDAGtoDAG (see below bug). Bug #98033.
Issue is gone, thanks. |
yuxuanchen1997
pushed a commit
that referenced
this issue
Jul 25, 2024
Summary: Currently, an illegal 2-byte load from a 1-byte global variable is being generated. This change instead generates a 1-byte load and zero-extends it to i16 register. This was always the intended behavior of the function. In addition, an i1 ext load of any kind needs to be promoted. A missing setLoadExtAction for ISD::EXTLOAD was causing an "Unhandled source type" unreachable due to an illegal i1 ext load during ISelDAGtoDAG (see below bug). Bug #98033. Test Plan: Reviewers: Subscribers: Tasks: Tags: Differential Revision: https://phabricator.intern.facebook.com/D60251000
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The text was updated successfully, but these errors were encountered: