2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2019-02-27 18:39:32 +08:00
|
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2019-11-29 22:41:47 +08:00
|
|
|
#include "core/helpers/hw_cmds.h"
|
2019-12-12 19:09:49 +08:00
|
|
|
#include "core/helpers/options.h"
|
2017-12-21 07:45:38 +08:00
|
|
|
#include "runtime/helpers/array_count.h"
|
2019-02-27 18:39:32 +08:00
|
|
|
|
2017-12-21 07:45:38 +08:00
|
|
|
#include <cstddef>
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2017-12-21 07:45:38 +08:00
|
|
|
// AUB file folder location
|
|
|
|
const char *folderAUB = "aub_out";
|
|
|
|
|
|
|
|
// Initial value for HW tag
|
|
|
|
uint32_t initialHardwareTag = (uint32_t)-1;
|
|
|
|
|
|
|
|
// Number of devices in the platform
|
|
|
|
static const HardwareInfo *DefaultPlatformDevices[] =
|
|
|
|
{
|
|
|
|
&DEFAULT_PLATFORM::hwInfo,
|
|
|
|
};
|
|
|
|
|
2018-08-13 15:27:49 +08:00
|
|
|
size_t numPlatformDevices = arrayCount(DefaultPlatformDevices);
|
2017-12-21 07:45:38 +08:00
|
|
|
const HardwareInfo **platformDevices = DefaultPlatformDevices;
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|