Files
compute-runtime/shared/test/common/helpers/kernel_binary_helper.h
Mateusz Jablonski 7187769744 Move kernel binary helpers to shared
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2021-10-06 13:41:34 +02:00

19 lines
384 B
C++

/*
* Copyright (C) 2018-2021 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;
};