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 e1629ef commit e5c402dCopy full SHA for e5c402d
llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
@@ -1261,7 +1261,8 @@ bool NVPTXDAGToDAGISel::tryLDGLDU(SDNode *N) {
1261
EltVT = EltVT.getVectorElementType();
1262
// vectors of 8/16bits type are loaded/stored as multiples of v4i8/v2x16
1263
// elements.
1264
- if ((EltVT == MVT::f16 && OrigType == MVT::v2f16) ||
+ if ((EltVT == MVT::f32 && OrigType == MVT::v2f32) ||
1265
+ (EltVT == MVT::f16 && OrigType == MVT::v2f16) ||
1266
(EltVT == MVT::bf16 && OrigType == MVT::v2bf16) ||
1267
(EltVT == MVT::i16 && OrigType == MVT::v2i16) ||
1268
(EltVT == MVT::i8 && OrigType == MVT::v4i8)) {
0 commit comments