mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-26 23:33:20 +08:00
- hw_info - hw_cmds - kmd_notify_properties - completion_stamp - bxml_generator_glue Related-To: NEO-3982 Change-Id: I3ed3ef81f42596f381e60c19250f6eb1296d47a4 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
28 lines
615 B
C++
28 lines
615 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/helpers/options.h"
|
|
|
|
#include "core/helpers/hw_cmds.h"
|
|
#include "runtime/helpers/array_count.h"
|
|
|
|
namespace NEO {
|
|
// AUB file folder location
|
|
const char *folderAUB = ".";
|
|
|
|
// Initial value for HW tag
|
|
uint32_t initialHardwareTag = 0;
|
|
|
|
// Number of devices in the platform
|
|
static const HardwareInfo *DefaultPlatformDevices[] = {
|
|
&DEFAULT_PLATFORM::hwInfo,
|
|
};
|
|
|
|
size_t numPlatformDevices = arrayCount(DefaultPlatformDevices);
|
|
const HardwareInfo **platformDevices = DefaultPlatformDevices;
|
|
} // namespace NEO
|