2018-03-05 09:25:40 +01:00
|
|
|
/*
|
2020-01-14 14:32:11 +01:00
|
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
2018-09-18 09:11:08 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
2018-03-05 09:25:40 +01:00
|
|
|
|
|
|
|
|
#pragma once
|
2020-02-24 13:10:44 +01:00
|
|
|
#include "shared/source/built_ins/built_ins.h"
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/execution_environment/execution_environment.h"
|
2020-02-24 10:22:30 +01:00
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2020-02-19 09:14:40 +01:00
|
|
|
class Device;
|
2018-03-05 09:25:40 +01:00
|
|
|
|
2020-02-19 09:14:40 +01:00
|
|
|
const SipKernel &initSipKernel(SipKernelType type, Device &device);
|
2018-08-14 10:56:42 +02:00
|
|
|
Program *createProgramForSip(ExecutionEnvironment &executionEnvironment,
|
|
|
|
|
Context *context,
|
2018-05-14 11:25:18 +02:00
|
|
|
std::vector<char> &binary,
|
|
|
|
|
size_t size,
|
2020-02-24 13:10:44 +01:00
|
|
|
int *errcodeRet,
|
2020-02-20 08:12:44 +01:00
|
|
|
Device *device);
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|