Revert "performance: Enable direct submission on DG2 Windows"

This reverts commit b520c64775.

Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
This commit is contained in:
Compute-Runtime-Validation 2024-10-09 07:25:57 +02:00 committed by Compute-Runtime-Automation
parent a111c18fb1
commit 946e421f77
2 changed files with 1 additions and 5 deletions

View File

@ -23,7 +23,7 @@ namespace NEO {
template <>
bool ProductHelperHw<gfxProduct>::isDirectSubmissionSupported(ReleaseHelper *releaseHelper) const {
return true;
return false;
}
template <>

View File

@ -14,8 +14,4 @@ using Dg2ProductHelperWindows = ProductHelperTestWindows;
HWTEST2_F(Dg2ProductHelperWindows, givenProductHelperWhenCheckingIsBufferPoolAllocatorSupportedThenCorrectValueIsReturned, IsDG2) {
EXPECT_TRUE(productHelper->isBufferPoolAllocatorSupported());
}
HWTEST2_F(Dg2ProductHelperWindows, givenProductHelperWhenCheckDirectSubmissionSupportedThenTrueIsReturned, IsDG2) {
EXPECT_TRUE(productHelper->isDirectSubmissionSupported(nullptr));
}