mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00

create program for all provided devices move OCL specific code from shared to opencl Related-To: NEO-5001 Change-Id: Ic352b4e907ae75426634ae4b3c7048edecaf83e7 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
29 lines
594 B
C++
29 lines
594 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "opencl/source/built_ins/built_in_ops_vme.h"
|
|
|
|
namespace NEO {
|
|
class Program;
|
|
class ClDevice;
|
|
class ClDeviceVector;
|
|
class Context;
|
|
class BuiltIns;
|
|
class BuiltinDispatchInfoBuilder;
|
|
namespace Vme {
|
|
|
|
Program *createBuiltInProgram(
|
|
Context &context,
|
|
const ClDeviceVector &deviceVector,
|
|
const char *kernelNames,
|
|
int &errcodeRet);
|
|
|
|
BuiltinDispatchInfoBuilder &getBuiltinDispatchInfoBuilder(EBuiltInOps::Type operation, ClDevice &device);
|
|
|
|
} // namespace Vme
|
|
} // namespace NEO
|