18 lines
404 B
C++
18 lines
404 B
C++
/*
|
|
* Copyright (C) 2018-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/helpers/built_ins_helper.h"
|
|
|
|
#include "shared/source/device/device.h"
|
|
#include "shared/source/device_binary_format/device_binary_formats.h"
|
|
|
|
namespace NEO {
|
|
void initSipKernel(SipKernelType type, Device &device) {
|
|
device.getBuiltIns()->getSipKernel(type, device);
|
|
}
|
|
} // namespace NEO
|