Files
compute-runtime/opencl/source/helpers/neo_driver_version.h
Artur Harasimiuk 43016c6559 fix driver version reporting
Change-Id: I187f1e1a71f07dbd83dfadbd9c51ff910be356b8
Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
2020-03-22 10:53:13 +01:00

28 lines
352 B
C++

/*
* Copyright (C) 2019-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "driver_version.h"
#ifdef QTR
#undef QTR
#endif
#ifdef TOSTR
#undef TOSTR
#endif
#define QTR(a) #a
#define TOSTR(b) QTR(b)
namespace NEO {
constexpr const char *driverVersion = TOSTR(NEO_OCL_DRIVER_VERSION);
}
#undef QTR
#undef TOSTR