18 lines
383 B
C++
18 lines
383 B
C++
/*
|
|
* Copyright (C) 2021-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "shared/source/utilities/const_stringref.h"
|
|
|
|
namespace NEO {
|
|
namespace Queries {
|
|
inline constexpr ConstStringRef queryNeoRevision = "NEO_REVISION";
|
|
inline constexpr ConstStringRef queryOCLDriverVersion = "OCL_DRIVER_VERSION";
|
|
}; // namespace Queries
|
|
} // namespace NEO
|