Files
compute-runtime/opencl/test/unit_test/perf_tests/options_perf_tests.cpp
Artur Harasimiuk fa6b181120 do not use absolute path when including hw_cmds.h
Change-Id: I59a825f25d6572f7dfb0c80211a6e3652e2827c5
Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
2020-08-04 13:27:29 +02:00

33 lines
812 B
C++

/*
* Copyright (C) 2017-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "opencl/source/helpers/array_count.h"
#include "hw_cmds.h"
namespace NEO {
// 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;
} // namespace NEO
bool printMemoryOpCallStack = true;