2018-03-05 09:25:40 +01:00
|
|
|
/*
|
2021-01-07 15:13:04 +00:00
|
|
|
* Copyright (C) 2018-2021 Intel Corporation
|
2018-09-18 09:11:08 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
2018-03-05 09:25:40 +01:00
|
|
|
|
2021-01-07 15:13:04 +00:00
|
|
|
#include "shared/source/helpers/built_ins_helper.h"
|
2019-02-27 11:39:32 +01:00
|
|
|
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/device/device.h"
|
2020-10-13 11:41:48 +02:00
|
|
|
#include "shared/source/device_binary_format/device_binary_formats.h"
|
2020-02-24 10:22:30 +01:00
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2020-12-02 10:22:27 +00:00
|
|
|
void initSipKernel(SipKernelType type, Device &device) {
|
|
|
|
|
device.getBuiltIns()->getSipKernel(type, device);
|
2018-05-14 11:25:18 +02:00
|
|
|
}
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|