Put template method instantiation into correct namespace
Change-Id: Ic240dbcc28dde5a53ab040c6e4c9b9350d9d8874
This commit is contained in:
parent
217de2ca9f
commit
dec295e3fd
|
@ -431,5 +431,7 @@ void BdwParse::validateCommand<MEDIA_VFE_STATE *>(GenCmdList::iterator itorBegin
|
|||
ASSERT_TRUE(false) << "A PIPE_CONTROL w/ CS stall is required before a MEDIA_VFE_STATE.";
|
||||
}
|
||||
|
||||
namespace OCLRT {
|
||||
template void HardwareParse::findHardwareCommands<BDWFamily>();
|
||||
template const void *HardwareParse::getStatelessArgumentPointer<BDWFamily>(const Kernel &kernel, uint32_t indexArg, IndirectHeap &ioh);
|
||||
} // namespace OCLRT
|
||||
|
|
|
@ -467,5 +467,7 @@ void SklParse::validateCommand<MEDIA_VFE_STATE *>(GenCmdList::iterator itorBegin
|
|||
ASSERT_TRUE(false) << "A PIPE_CONTROL w/ CS stall is required before a MEDIA_VFE_STATE.";
|
||||
}
|
||||
|
||||
namespace OCLRT {
|
||||
template void HardwareParse::findHardwareCommands<SKLFamily>();
|
||||
template const void *HardwareParse::getStatelessArgumentPointer<SKLFamily>(const Kernel &kernel, uint32_t indexArg, IndirectHeap &ioh);
|
||||
} // namespace OCLRT
|
||||
|
|
Loading…
Reference in New Issue