mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 23:03:02 +08:00
Related-To: NEO-3220 Change-Id: Ib85a1f4fd69b47bc8e819a29cc4adec73bda72e0 Signed-off-by: Pawel Wilma <pawel.wilma@intel.com>
17 lines
276 B
C++
17 lines
276 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#pragma once
|
|
|
|
namespace NEO {
|
|
std::vector<std::string> getBuiltInFileNames();
|
|
std::string getBuiltInHashFileName(uint64_t hash);
|
|
} // namespace NEO
|