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