We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db0cdb1 commit c1c2262Copy full SHA for c1c2262
llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
@@ -1250,7 +1250,8 @@ bool NVPTXDAGToDAGISel::tryLDGLDU(SDNode *N) {
1250
EltVT = EltVT.getVectorElementType();
1251
// vectors of 8/16bits type are loaded/stored as multiples of v4i8/v2x16
1252
// elements.
1253
- if ((EltVT == MVT::f16 && OrigType == MVT::v2f16) ||
+ if ((EltVT == MVT::f32 && OrigType == MVT::v2f32) ||
1254
+ (EltVT == MVT::f16 && OrigType == MVT::v2f16) ||
1255
(EltVT == MVT::bf16 && OrigType == MVT::v2bf16) ||
1256
(EltVT == MVT::i16 && OrigType == MVT::v2i16) ||
1257
(EltVT == MVT::i8 && OrigType == MVT::v4i8)) {
0 commit comments