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