File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -730,14 +730,12 @@ SPDX-License-Identifier: MIT
730
730
731
731
bool hasTwoGRFBank16Bundles () const
732
732
{
733
- const TARGET_PLATFORM P = getPlatform ();
734
- return P == XE_HP;
733
+ return getPlatform () == XE_HP;
735
734
}
736
735
737
736
bool hasOneGRFBank16Bundles () const
738
737
{
739
- const TARGET_PLATFORM P = getPlatform ();
740
- return P != XE_HP;
738
+ return getPlatform () != XE_HP;
741
739
}
742
740
743
741
bool hasDPASSrc0Src1BankConflict () const
@@ -778,8 +776,7 @@ SPDX-License-Identifier: MIT
778
776
// Note that this function is intentionally omitted from HWCapsOpen.inc to avoid IP leak
779
777
bool hasThreeALUPipes () const
780
778
{
781
- const TARGET_PLATFORM P = getPlatform ();
782
- return (P == XE_HP);
779
+ return (getPlatform () == XE_HP);
783
780
}
784
781
785
782
bool hasFusedEUWA () const
You can’t perform that action at this time.
0 commit comments