2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2020-01-14 14:32:11 +01:00
|
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
2018-09-18 09:11:08 +02:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-02-22 22:50:57 +01:00
|
|
|
#include "opencl/source/program/create.inl"
|
2019-02-27 11:39:32 +01:00
|
|
|
|
2020-02-22 22:50:57 +01:00
|
|
|
#include "opencl/source/program/program.h"
|
2017-12-21 00:45:38 +01:00
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2020-10-08 12:21:58 +02:00
|
|
|
|
|
|
|
namespace ProgramFunctions {
|
|
|
|
CreateFromILFunc createFromIL = Program::createFromIL<Program>;
|
|
|
|
} // namespace ProgramFunctions
|
|
|
|
|
2020-10-21 10:25:03 +02:00
|
|
|
template Program *Program::create<Program>(Context *, const ClDeviceVector &, const size_t *, const unsigned char **, cl_int *, cl_int &);
|
2017-12-21 00:45:38 +01:00
|
|
|
template Program *Program::create<Program>(cl_context, cl_uint, const char **, const size_t *, cl_int &);
|
2020-01-14 14:32:11 +01:00
|
|
|
template Program *Program::create<Program>(const char *, Context *, ClDevice &, bool, cl_int *);
|
2018-05-28 16:16:06 +02:00
|
|
|
template Program *Program::create<Program>(const char *, Context *, Device &, bool, cl_int *);
|
2017-12-21 00:45:38 +01:00
|
|
|
template Program *Program::createFromIL<Program>(Context *, const void *, size_t length, cl_int &);
|
2020-02-20 08:12:44 +01:00
|
|
|
template Program *Program::createFromGenBinary<Program>(ExecutionEnvironment &executionEnvironment, Context *context, const void *binary, size_t size, bool isBuiltIn, cl_int *errcodeRet, Device *device);
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|