mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00

set include path to third_party/aub_stream rename third_party/aub_stream/headers -> third_party/aub_stream/aubstream Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
22 lines
580 B
C++
22 lines
580 B
C++
/*
|
|
* Copyright (C) 2021-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/aub/aub_helper.h"
|
|
#include "shared/source/aub_mem_dump/aub_mem_dump.h"
|
|
#include "shared/source/debug_settings/debug_settings_manager.h"
|
|
|
|
#include "aubstream/aubstream.h"
|
|
|
|
namespace NEO {
|
|
|
|
void AubHelper::setTbxConfiguration() {
|
|
aub_stream::setTbxServerIp(DebugManager.flags.TbxServer.get());
|
|
aub_stream::setTbxServerPort(DebugManager.flags.TbxPort.get());
|
|
aub_stream::setTbxFrontdoorMode(DebugManager.flags.TbxFrontdoorMode.get());
|
|
}
|
|
} // namespace NEO
|