2019-04-01 15:33:19 +08:00
|
|
|
/*
|
2022-12-08 22:23:49 +08:00
|
|
|
* Copyright (C) 2019-2022 Intel Corporation
|
2019-04-01 15:33:19 +08:00
|
|
|
*
|
|
|
|
* 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 {
|
2022-12-08 22:23:49 +08:00
|
|
|
inline constexpr const char *driverVersion = TOSTR(NEO_OCL_DRIVER_VERSION);
|
2019-04-01 15:33:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#undef QTR
|
|
|
|
#undef TOSTR
|