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 53cda4c commit db5449bCopy full SHA for db5449b
llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
@@ -313,11 +313,16 @@ AMDGPUTargetLowering::AMDGPUTargetLowering(const TargetMachine &TM,
313
314
setTruncStoreAction(MVT::f32, MVT::bf16, Expand);
315
setTruncStoreAction(MVT::f32, MVT::f16, Expand);
316
+ setTruncStoreAction(MVT::v2f32, MVT::v2bf16, Expand);
317
setTruncStoreAction(MVT::v2f32, MVT::v2f16, Expand);
318
setTruncStoreAction(MVT::v3f32, MVT::v3f16, Expand);
319
+ setTruncStoreAction(MVT::v4f32, MVT::v4bf16, Expand);
320
setTruncStoreAction(MVT::v4f32, MVT::v4f16, Expand);
321
+ setTruncStoreAction(MVT::v8f32, MVT::v8bf16, Expand);
322
setTruncStoreAction(MVT::v8f32, MVT::v8f16, Expand);
323
+ setTruncStoreAction(MVT::v16f32, MVT::v16bf16, Expand);
324
setTruncStoreAction(MVT::v16f32, MVT::v16f16, Expand);
325
+ setTruncStoreAction(MVT::v32f32, MVT::v32bf16, Expand);
326
setTruncStoreAction(MVT::v32f32, MVT::v32f16, Expand);
327
328
setTruncStoreAction(MVT::f64, MVT::bf16, Expand);
0 commit comments