2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2022-05-10 01:40:30 +08:00
|
|
|
* Copyright (C) 2018-2022 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2020-02-23 05:21:06 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class KernelBinaryHelper {
|
|
|
|
public:
|
|
|
|
KernelBinaryHelper(const std::string &name = "copybuffer", bool appendOptionsToFileName = true);
|
|
|
|
~KernelBinaryHelper();
|
|
|
|
|
2022-05-10 01:40:30 +08:00
|
|
|
static const std::string BUILT_INS; // NOLINT(readability-identifier-naming)
|
|
|
|
static const std::string BUILT_INS_WITH_IMAGES; // NOLINT(readability-identifier-naming)
|
2017-12-21 07:45:38 +08:00
|
|
|
};
|