Skip to content

Commit 3881a36

Browse files
fangliu2020igcbot
authored andcommitted
Remove unreached check from getFP64MadmExecSize()
Remove unreached check from getFP64MadmExecSize()
1 parent 1581612 commit 3881a36

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

visa/HWCaps.inc

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -441,10 +441,7 @@ bool supportFloatOr64bRegioning() const {
441441

442442
int getFP64MadmExecSize() const {
443443
auto plat = getPlatform();
444-
if (supportNativeSIMD32()) {
445-
return 32;
446-
}
447-
else if (plat >= Xe_PVC) {
444+
if (plat >= Xe_PVC) {
448445
return 16;
449446
} else if (plat == Xe_XeHPSDV || plat == Xe_DG2 || plat == Xe_MTL ||
450447
plat == Xe_ARL) {

0 commit comments

Comments
 (0)