2021-08-05 12:50:37 +00:00
|
|
|
/*
|
2023-09-26 13:41:20 +00:00
|
|
|
* Copyright (C) 2021-2023 Intel Corporation
|
2021-08-05 12:50:37 +00:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2022-05-17 19:04:23 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
2021-08-05 12:50:37 +00:00
|
|
|
#include "shared/source/utilities/const_stringref.h"
|
|
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
namespace Queries {
|
2022-12-08 14:23:49 +00:00
|
|
|
inline constexpr ConstStringRef queryNeoRevision = "NEO_REVISION";
|
2023-09-26 13:41:20 +00:00
|
|
|
inline constexpr ConstStringRef queryIgcRevision = "IGC_REVISION";
|
2022-12-08 14:23:49 +00:00
|
|
|
inline constexpr ConstStringRef queryOCLDriverVersion = "OCL_DRIVER_VERSION";
|
2021-08-05 12:50:37 +00:00
|
|
|
}; // namespace Queries
|
|
|
|
|
} // namespace NEO
|