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 f1fcf29 commit 50ea5d8Copy full SHA for 50ea5d8
IGC/Compiler/CISACodeGen/CISABuilder.cpp
@@ -4205,7 +4205,7 @@ namespace IGC
4205
SaveOption(vISA_GlobalSendVarSplit, true);
4206
}
4207
4208
- if (IGC_IS_FLAG_ENABLED(FuseTypedWrite))
+ if (m_program->m_Platform->canFuseTypedWrite())
4209
{
4210
SaveOption(vISA_FuseTypedWrites, true);
4211
IGC/Compiler/CISACodeGen/Platform.hpp
@@ -377,6 +377,11 @@ namespace IGC
377
378
return false;
379
380
+
381
+ bool canFuseTypedWrite() const
382
+ {
383
+ return IGC_IS_FLAG_ENABLED(FuseTypedWrite);
384
+ }
385
// ***** Below go accessor methods for testing WA data from WA_TABLE *****
386
387
bool WaDoNotPushConstantsForAllPulledGSTopologies() const
0 commit comments