mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 09:09:04 +08:00
RelatedTo: NEO-4515 Change-Id: I1f719ea1f60f313fba44d49f84fe2caf6ea4e5c4 Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
16 lines
377 B
C++
16 lines
377 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <string>
|
|
|
|
extern std::string testFiles;
|
|
extern std::string clFiles;
|
|
extern std::string binaryNameSuffix;
|
|
|
|
void retrieveBinaryKernelFilename(std::string &outputFilename, const std::string &kernelName, const std::string &extension, const std::string &options = "");
|