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 3655113 commit cd95fe7Copy full SHA for cd95fe7
llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
@@ -1279,7 +1279,8 @@ bool NVPTXDAGToDAGISel::tryLDGLDU(SDNode *N) {
1279
EltVT = EltVT.getVectorElementType();
1280
// vectors of 8/16bits type are loaded/stored as multiples of v4i8/v2x16
1281
// elements.
1282
- if ((EltVT == MVT::f16 && OrigType == MVT::v2f16) ||
+ if ((EltVT == MVT::f32 && OrigType == MVT::v2f32) ||
1283
+ (EltVT == MVT::f16 && OrigType == MVT::v2f16) ||
1284
(EltVT == MVT::bf16 && OrigType == MVT::v2bf16) ||
1285
(EltVT == MVT::i16 && OrigType == MVT::v2i16) ||
1286
(EltVT == MVT::i8 && OrigType == MVT::v4i8)) {
0 commit comments