Put template method instantiation into correct namespace

Change-Id: Ic240dbcc28dde5a53ab040c6e4c9b9350d9d8874
This commit is contained in:
Zdanowicz, Zbigniew 2018-05-25 13:14:29 +02:00 committed by sys_ocldev
parent 217de2ca9f
commit dec295e3fd
2 changed files with 4 additions and 0 deletions

View File

@ -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

View File

@ -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