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 &);
|
2020-10-23 09:38:45 +02:00
|
|
|
template Program *Program::create<Program>(Context *, cl_uint, const char **, const size_t *, cl_int &);
|
|
|
|
template Program *Program::createBuiltInFromSource<Program>(const char *, Context *, const ClDeviceVector &, cl_int *);
|
2017-12-21 00:45:38 +01:00
|
|
|
template Program *Program::createFromIL<Program>(Context *, const void *, size_t length, cl_int &);
|
2020-10-23 09:38:45 +02:00
|
|
|
template Program *Program::createBuiltInFromGenBinary<Program>(Context *context, const ClDeviceVector &, const void *binary, size_t size, cl_int *errcodeRet);
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|