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 cc7abe0 commit e699c1aCopy full SHA for e699c1a
llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
@@ -1291,7 +1291,8 @@ bool NVPTXDAGToDAGISel::tryLDGLDU(SDNode *N) {
1291
EltVT = EltVT.getVectorElementType();
1292
// vectors of 8/16bits type are loaded/stored as multiples of v4i8/v2x16
1293
// elements.
1294
- if ((EltVT == MVT::f16 && OrigType == MVT::v2f16) ||
+ if ((EltVT == MVT::f32 && OrigType == MVT::v2f32) ||
1295
+ (EltVT == MVT::f16 && OrigType == MVT::v2f16) ||
1296
(EltVT == MVT::bf16 && OrigType == MVT::v2bf16) ||
1297
(EltVT == MVT::i16 && OrigType == MVT::v2i16) ||
1298
(EltVT == MVT::i8 && OrigType == MVT::v4i8)) {
0 commit comments