Skip to content

Commit

Permalink
Enable debug and wmtp SIP on all Xe3 gen platforms
Browse files Browse the repository at this point in the history
Enable debug and wmtp SIP on all Xe3 gen platforms
  • Loading branch information
nlella authored and igcbot committed Feb 5, 2025
1 parent 48d644c commit b488aab
Showing 1 changed file with 2 additions and 16 deletions.
18 changes: 2 additions & 16 deletions IGC/common/SystemThread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1542,25 +1542,11 @@ CGenSystemInstructionKernelProgram* CGenSystemInstructionKernelProgram::Create(
case IGFX_XE3_CORE:
if (mode & SYSTEM_THREAD_MODE_DEBUG)
{
switch (platform.getPlatformInfo().eProductFamily)
{
case IGFX_PTL:
SIPIndex = XE3G_DEBUG_BINDLESS;
break;
default:
IGC_ASSERT(false);
}
SIPIndex = XE3G_DEBUG_BINDLESS;
}
else if(mode & SYSTEM_THREAD_MODE_CSR)
{
switch (platform.getPlatformInfo().eProductFamily)
{
case IGFX_PTL:
SIPIndex = XE3_CSR_DEBUG_BINDLESS;
break;
default:
IGC_ASSERT(false);
}
SIPIndex = XE3_CSR_DEBUG_BINDLESS;
}
break;

Expand Down

0 comments on commit b488aab

Please sign in to comment.