Files
compute-runtime/shared/source/command_stream/host_function_enablers.inl
Kamil Kopryk d20c9264e5 feature: add hostFunctions data layout
Related-To: NEO-14577
Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>
2025-09-11 11:46:59 +02:00

16 lines
870 B
C++

/*
* Copyright (C) 2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/command_stream/host_function.h"
namespace NEO {
template void HostFunctionHelper::programHostFunction<Family>(LinearStream &commandStream, const HostFunctionData &hostFunctionData, uint64_t userHostFunctionAddress, uint64_t userDataAddress);
template void HostFunctionHelper::programHostFunctionUserData<Family>(LinearStream &commandStream, const HostFunctionData &hostFunctionData, uint64_t userHostFunctionAddress, uint64_t userDataAddress);
template void HostFunctionHelper::programSignalHostFunctionStart<Family>(LinearStream &commandStream, const HostFunctionData &hostFunctionData);
template void HostFunctionHelper::programWaitForHostFunctionCompletion<Family>(LinearStream &commandStream, const HostFunctionData &hostFunctionData);
} // namespace NEO