mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-27 15:53:13 +08:00
Change-Id: I78bf6a82df3399a2b79143333989bac81e7a392a Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
27 lines
608 B
C++
27 lines
608 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "core/helpers/array_count.h"
|
|
#include "core/helpers/hw_cmds.h"
|
|
#include "core/helpers/options.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
|