2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2020-01-14 21:32:11 +08:00
|
|
|
* Copyright (C) 2017-2020 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 {
|
2017-12-21 07:45:38 +08:00
|
|
|
template Program *Program::create<Program>(cl_context, cl_uint, const cl_device_id *, const size_t *, const unsigned char **, cl_int *, cl_int &);
|
|
|
|
template Program *Program::create<Program>(cl_context, cl_uint, const char **, const size_t *, cl_int &);
|
2020-01-14 21:32:11 +08:00
|
|
|
template Program *Program::create<Program>(const char *, Context *, ClDevice &, bool, cl_int *);
|
2018-05-28 22:16:06 +08:00
|
|
|
template Program *Program::create<Program>(const char *, Context *, Device &, bool, cl_int *);
|
2017-12-21 07:45:38 +08:00
|
|
|
template Program *Program::createFromIL<Program>(Context *, const void *, size_t length, cl_int &);
|
2020-02-20 15:12:44 +08: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 18:59:46 +08:00
|
|
|
} // namespace NEO
|