2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2021-05-17 02:51:16 +08:00
|
|
|
* Copyright (C) 2018-2021 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-02-23 05:50:57 +08:00
|
|
|
#include "opencl/source/program/create.inl"
|
2019-02-27 18:39:32 +08:00
|
|
|
|
2020-02-23 05:50:57 +08:00
|
|
|
#include "opencl/source/program/program.h"
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2020-10-08 18:21:58 +08:00
|
|
|
|
|
|
|
namespace ProgramFunctions {
|
|
|
|
CreateFromILFunc createFromIL = Program::createFromIL<Program>;
|
|
|
|
} // namespace ProgramFunctions
|
|
|
|
|
2020-10-21 16:25:03 +08:00
|
|
|
template Program *Program::create<Program>(Context *, const ClDeviceVector &, const size_t *, const unsigned char **, cl_int *, cl_int &);
|
2020-10-23 15:38:45 +08: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 07:45:38 +08:00
|
|
|
template Program *Program::createFromIL<Program>(Context *, const void *, size_t length, cl_int &);
|
2020-10-23 15:38:45 +08:00
|
|
|
template Program *Program::createBuiltInFromGenBinary<Program>(Context *context, const ClDeviceVector &, const void *binary, size_t size, cl_int *errcodeRet);
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|