Files
compute-runtime/opencl/test/unit_test/helpers/kernel_binary_helper.h
Filip Hazubski 6c4b1f951c Do not force cl_khr_3d_image_writes extension when compiling kernels
Update usage of SUPPORTED_IMAGES flag and do not use images when disabled.
Use SUPPORTED_2_0 only on fully OCL 2.1 conformant platforms.

Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
2020-11-27 17:20:46 +01:00

19 lines
384 B
C++

/*
* Copyright (C) 2017-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <string>
class KernelBinaryHelper {
public:
KernelBinaryHelper(const std::string &name = "copybuffer", bool appendOptionsToFileName = true);
~KernelBinaryHelper();
static const std::string BUILT_INS;
static const std::string BUILT_INS_WITH_IMAGES;
};