mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-04 15:53:45 +08:00
Change-Id: Ib7dd5445c4f95c9703755b5a81c2909dec394de4 Signed-off-by: Jablonski, Mateusz <mateusz.jablonski@intel.com>
22 lines
594 B
C++
22 lines
594 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "core/execution_environment/execution_environment.h"
|
|
#include "runtime/built_ins/built_ins.h"
|
|
|
|
namespace NEO {
|
|
class Device;
|
|
|
|
const SipKernel &initSipKernel(SipKernelType type, Device &device);
|
|
Program *createProgramForSip(ExecutionEnvironment &executionEnvironment,
|
|
Context *context,
|
|
std::vector<char> &binary,
|
|
size_t size,
|
|
cl_int *errcodeRet);
|
|
} // namespace NEO
|