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 2db6a20 commit 29d2efdCopy full SHA for 29d2efd
visa/IsaVerification.cpp
@@ -1076,6 +1076,10 @@ void vISAVerifier::verifyInstructionMove(const CISA_INST *inst) {
1076
VISA_Type dstType = getVectorOperandType(header, dst);
1077
VISA_Type src0Type = getVectorOperandType(header, src0);
1078
1079
+ if (dstType == ISA_TYPE_B || src0Type == ISA_TYPE_B) {
1080
+ REPORT_INSTRUCTION(options, irBuilder->getPlatform() >= Xe3,
1081
+ "HF8 fcvt is not supported on the selected platform");
1082
+ }
1083
1084
if (dstType == ISA_TYPE_UB) {
1085
REPORT_INSTRUCTION(options, src0Type == ISA_TYPE_HF,
0 commit comments