2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2020-02-22 16:28:27 +08:00
|
|
|
* Copyright (C) 2017-2020 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
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/helpers/hw_cmds.h"
|
2020-02-24 17:22:30 +08:00
|
|
|
|
2020-02-23 05:50:57 +08:00
|
|
|
#include "opencl/source/helpers/array_count.h"
|
2019-02-27 18:39:32 +08:00
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2017-12-21 07:45:38 +08:00
|
|
|
// IP address for TBX server
|
|
|
|
const char *tbxServerIp = "127.0.0.1";
|
|
|
|
|
|
|
|
// AUB file folder location
|
|
|
|
const char *folderAUB = "aub_out";
|
|
|
|
|
|
|
|
// Initial value for HW tag
|
|
|
|
// Set to 0 if using HW or simulator, otherwise 0xFFFFFF00, needs to be lower then Event::EventNotReady.
|
|
|
|
uint32_t initialHardwareTag = static_cast<uint32_t>(0);
|
|
|
|
|
|
|
|
// Number of devices in the platform
|
|
|
|
static const HardwareInfo *DefaultPlatformDevices[] = {
|
|
|
|
&DEFAULT_PLATFORM::hwInfo,
|
|
|
|
};
|
|
|
|
|
|
|
|
size_t numPlatformDevices = ARRAY_COUNT(DefaultPlatformDevices);
|
|
|
|
const HardwareInfo **platformDevices = DefaultPlatformDevices;
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|
2017-12-21 07:45:38 +08:00
|
|
|
|
|
|
|
bool printMemoryOpCallStack = true;
|