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 e484461 commit 77da2f7Copy full SHA for 77da2f7
llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
@@ -300,11 +300,16 @@ AMDGPUTargetLowering::AMDGPUTargetLowering(const TargetMachine &TM,
300
301
setTruncStoreAction(MVT::f32, MVT::bf16, Expand);
302
setTruncStoreAction(MVT::f32, MVT::f16, Expand);
303
+ setTruncStoreAction(MVT::v2f32, MVT::v2bf16, Expand);
304
setTruncStoreAction(MVT::v2f32, MVT::v2f16, Expand);
305
setTruncStoreAction(MVT::v3f32, MVT::v3f16, Expand);
306
+ setTruncStoreAction(MVT::v4f32, MVT::v4bf16, Expand);
307
setTruncStoreAction(MVT::v4f32, MVT::v4f16, Expand);
308
+ setTruncStoreAction(MVT::v8f32, MVT::v8bf16, Expand);
309
setTruncStoreAction(MVT::v8f32, MVT::v8f16, Expand);
310
+ setTruncStoreAction(MVT::v16f32, MVT::v16bf16, Expand);
311
setTruncStoreAction(MVT::v16f32, MVT::v16f16, Expand);
312
+ setTruncStoreAction(MVT::v32f32, MVT::v32bf16, Expand);
313
setTruncStoreAction(MVT::v32f32, MVT::v32f16, Expand);
314
315
setTruncStoreAction(MVT::f64, MVT::bf16, Expand);
0 commit comments