mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 17:00:59 +08:00
28 lines
542 B
C
28 lines
542 B
C
|
|
/*
|
||
|
|
* Copyright (C) 2020 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
#include "runtime/built_ins/built_in_ops_vme.h"
|
||
|
|
|
||
|
|
namespace NEO {
|
||
|
|
class Program;
|
||
|
|
class Device;
|
||
|
|
class Context;
|
||
|
|
class BuiltIns;
|
||
|
|
class BuiltinDispatchInfoBuilder;
|
||
|
|
namespace Vme {
|
||
|
|
|
||
|
|
Program *createBuiltInProgram(
|
||
|
|
Context &context,
|
||
|
|
Device &device,
|
||
|
|
const char *kernelNames,
|
||
|
|
int &errcodeRet);
|
||
|
|
|
||
|
|
BuiltinDispatchInfoBuilder &getBuiltinDispatchInfoBuilder(EBuiltInOps::Type operation, Device &device);
|
||
|
|
|
||
|
|
} // namespace Vme
|
||
|
|
} // namespace NEO
|